diff options
author | Ulrich Drepper <drepper@redhat.com> | 2017-07-21 08:57:04 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@gcc.gnu.org> | 2017-07-21 08:57:04 +0000 |
commit | 4bb3f8b53f9a1f95e68cc80ec9054b66815b250a (patch) | |
tree | 7713ed156adef820da7fee84ce783f9bc1e32e61 /gcc/dwarf2out.c | |
parent | 74360f142c0d98a4f643f3417133bea0b7fca75e (diff) | |
download | gcc-4bb3f8b53f9a1f95e68cc80ec9054b66815b250a.zip gcc-4bb3f8b53f9a1f95e68cc80ec9054b66815b250a.tar.gz gcc-4bb3f8b53f9a1f95e68cc80ec9054b66815b250a.tar.bz2 |
dwarf2out.c (output_file_names): Avoid double testing for dwarf_version >= 5.
gcc/
* dwarf2out.c (output_file_names): Avoid double testing for
dwarf_version >= 5.
From-SVN: r250420
Diffstat (limited to 'gcc/dwarf2out.c')
-rw-r--r-- | gcc/dwarf2out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/dwarf2out.c b/gcc/dwarf2out.c index 66103d7..2010450 100644 --- a/gcc/dwarf2out.c +++ b/gcc/dwarf2out.c @@ -11697,7 +11697,7 @@ output_file_names (void) output_line_string (str_form, filename0, "File Entry", 0); /* Include directory index. */ - if (dwarf_version >= 5 && idx_form != DW_FORM_udata) + if (idx_form != DW_FORM_udata) dw2_asm_output_data (idx_form == DW_FORM_data1 ? 1 : 2, 0, NULL); else |