Skip to content

Commit

Permalink
Adapt to upstream CBMC changes
Browse files Browse the repository at this point in the history
- MALLOC -> ALLOCATE
- java_new_array -> java_new_array_data
  • Loading branch information
smowton committed Nov 16, 2017
1 parent 4849d31 commit 49cf2ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pointer-analysis/value_set.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ void value_sett::get_value_set_rec(
}
else if(statement==ID_cpp_new ||
statement==ID_cpp_new_array ||
statement==ID_java_new_array )
statement==ID_java_new_array_data)
{
assert(suffix=="");
assert(expr_type.id()==ID_pointer);
Expand Down

0 comments on commit 49cf2ff

Please sign in to comment.