cygming.h (ASM_OUTPUT_DWARF_OFFSET): Fix typo.

2016-09-26  LH Mouse  <lh_mouse@126.com>

	* config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Fix typo.

From-SVN: r240500
This commit is contained in:
Liu Hao 2016-09-26 09:59:27 -06:00 committed by Jeff Law
parent c6147dc433
commit cfff6cdd17
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2016-09-26 LH Mouse <lh_mouse@126.com>
* config/i386/cygming.h (ASM_OUTPUT_DWARF_OFFSET): Fix typo.
2016-09-26 Marek Polacek <polacek@redhat.com>
* system.h: Use __has_attribute to check whether the fallthrough

View File

@ -111,7 +111,7 @@ along with GCC; see the file COPYING3. If not see
assemble_name (FILE, LABEL); \
if ((OFFSET) != 0) \
fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC, \
(HOST_WIDE_INT) (OFFSET)) \
(HOST_WIDE_INT) (OFFSET)); \
break; \
case 8: \
/* This is a hack. There is no 64-bit section relative \
@ -123,7 +123,7 @@ along with GCC; see the file COPYING3. If not see
assemble_name (FILE, LABEL); \
if ((OFFSET) != 0) \
fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC, \
(HOST_WIDE_INT) (OFFSET)) \
(HOST_WIDE_INT) (OFFSET)); \
fputs ("\n\t.long\t0", FILE); \
break; \
default: \