We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d017f1 commit 2a26429Copy full SHA for 2a26429
debug/DwarfPrinter.ml
@@ -328,12 +328,13 @@ module DwarfPrinter(Target: DWARF_TARGET)(DwarfAbbrevs:DWARF_ABBREVS):
328
print_string oc bt.base_type_name
329
330
let print_compilation_unit oc tag =
331
+ let prod_name = sprintf "AbsInt Angewandte Informatik GmbH:CompCert Version %s:%s" Configuration.version Configuration.arch in
332
print_string oc (Sys.getcwd ());
333
print_addr oc (get_start_addr ());
334
print_addr oc (get_end_addr ());
335
print_uleb128 oc 1;
336
print_string oc tag.compile_unit_name;
- print_string oc ("CompCert "^Configuration.version);
337
+ print_string oc prod_name;
338
print_addr oc (get_stmt_list_addr ())
339
340
let print_const_type oc ct =
0 commit comments