File tree 2 files changed +3
-1
lines changed
src/goto-instrument/contracts/dynamic-frames 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ const symbolt &dfcc_utilst::create_symbol(
100
100
source_location,
101
101
mode,
102
102
goto_model.symbol_table );
103
+ symbol.module = module;
103
104
symbol.is_lvalue = true ;
104
105
symbol.is_state_var = true ;
105
106
symbol.is_thread_local = true ;
@@ -125,6 +126,7 @@ const symbolt &dfcc_utilst::create_static_symbol(
125
126
source_location,
126
127
mode,
127
128
goto_model.symbol_table );
129
+ symbol.module = module;
128
130
symbol.is_static_lifetime = true ;
129
131
symbol.value = initial_value;
130
132
symbol.value .set (ID_C_no_nondet_initialization, no_nondet_initialization);
Original file line number Diff line number Diff line change @@ -228,8 +228,8 @@ dfcc_wrapper_programt::dfcc_wrapper_programt(
228
228
id2string (wrapper_symbol.name ),
229
229
" __contract_return_value" ,
230
230
wrapper_symbol.location ,
231
- wrapper_symbol.module ,
232
231
wrapper_symbol.mode ,
232
+ wrapper_symbol.module ,
233
233
false )
234
234
.symbol_expr ();
235
235
You can’t perform that action at this time.
0 commit comments