File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
cpp/ql/test/library-tests/ir/address_constant_folding Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ int global_var;
55void test_address_null_comparison (int param_var ) {
66 int local_var ;
77
8- if (& global_var == NULL ) {} // $ MISSING: VariableAddress=global_var
9- if (& global_var != NULL ) {} // $ MISSING: VariableAddress=global_var
8+ if (& global_var == NULL ) {} // $ VariableAddress=global_var
9+ if (& global_var != NULL ) {} // $ VariableAddress=global_var
1010 if (& global_var ) {} // $ VariableAddress=global_var
11- if (!& global_var ) {} // $ MISSING: VariableAddress=global_var
11+ if (!& global_var ) {} // $ VariableAddress=global_var
1212
1313 if (& local_var == NULL ) {} // $ VariableAddress=local_var
1414 if (& local_var != NULL ) {} // $ VariableAddress=local_var
You can’t perform that action at this time.
0 commit comments