File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -300,4 +300,5 @@ void ansi_c_architecture_strings(std::string &code)
300
300
code+=architecture_string (config.ansi_c .long_double_width , " long_double_width" );
301
301
code+=architecture_string (config.ansi_c .wchar_t_width , " wchar_t_width" );
302
302
code+=architecture_string (config.ansi_c .endianness , " endianness" );
303
+ code+=architecture_string (config.ansi_c .NULL_is_zero , " NULL_is_zero" );
303
304
}
Original file line number Diff line number Diff line change @@ -1048,6 +1048,9 @@ void configt::ansi_ct::set_from_symbol_table(const symbol_tablet &symbol_table)
1048
1048
1049
1049
// memory_operand_size=from_ns(ns, "memory_operand_size");
1050
1050
memory_operand_size=int_width/8 ;
1051
+
1052
+ // NULL_is_zero=from_ns("NULL_is_zero");
1053
+ NULL_is_zero=true ;
1051
1054
}
1052
1055
1053
1056
/* ******************************************************************\
You can’t perform that action at this time.
0 commit comments