Skip to content

Commit

Permalink
Reverted reintroduced quote of compilation dir.
Browse files Browse the repository at this point in the history
  • Loading branch information
bschommer committed Sep 19, 2017
1 parent 93d2fc9 commit e772e6c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions debug/Dwarfgen.ml
Expand Up @@ -549,7 +549,7 @@ let diab_gen_compilation_section s defs acc =
let cp = {
compile_unit_name = Simple_string !file_name;
compile_unit_range = Pc_pair (low_pc,high_pc);
compile_unit_dir = Simple_string (Filename.quote (Sys.getcwd ()));
compile_unit_dir = Simple_string (Sys.getcwd ());
compile_unit_prod_name = Simple_string prod_name
} in
let cp = new_entry (next_id ()) (DW_TAG_compile_unit cp) in
Expand Down Expand Up @@ -620,7 +620,7 @@ let gen_gnu_debug_info sec_name var_section : debug_entries =
let cp = {
compile_unit_name = gnu_string_entry !file_name;
compile_unit_range = r;
compile_unit_dir = gnu_string_entry (Filename.quote (Sys.getcwd ()));
compile_unit_dir = gnu_string_entry (Sys.getcwd ());
compile_unit_prod_name = gnu_string_entry prod_name;
} in
let cp = new_entry (next_id ()) (DW_TAG_compile_unit cp) in
Expand Down

0 comments on commit e772e6c

Please sign in to comment.