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
This commit is contained in:
Ulrich Drepper 2017-07-21 08:57:04 +00:00 committed by Ulrich Drepper
parent 74360f142c
commit 4bb3f8b53f
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2017-07-21 Ulrich Drepper <drepper@redhat.com>
* dwarf2out.c (output_file_names): Avoid double testing for
dwarf_version >= 5.
2017-07-21 Georg-Johann Lay <avr@gjlay.de>
* doc/invoke.texi (AVR Built-in Functions): Re-layout section.

View File

@ -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