// S : tags error min c $TAGS // S : expect --result error --location-comment ERROR // S : cc -o test.bc $CC_OPT $file // S : verify $V_OPT test.bc #include #include int main() { int x; int *mem = malloc( sizeof( int ) ); if ( mem ) { *mem = 42; if ( !*mem ) // OK exit( 1 ); memcpy( mem, &x, sizeof( int )); if ( *mem ) /* ERROR */ exit( 1 ); } free( mem ); return 0; }