We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a50562e commit b62bf01Copy full SHA for b62bf01
src/goto-instrument/nondet_static.cpp
@@ -42,6 +42,14 @@ void nondet_static(
42
if(has_prefix(id2string(sym.get_identifier()), CPROVER_PREFIX))
43
continue;
44
45
+ // any other internal variable such as Java specific?
46
+ if(
47
+ ns.lookup(sym.get_identifier())
48
+ .type.get_bool(ID_C_no_nondet_initialization))
49
+ {
50
+ continue;
51
+ }
52
+
53
// static lifetime?
54
if(!ns.lookup(sym.get_identifier()).is_static_lifetime)
55
0 commit comments