Commit cfff6cdd by Liu Hao Committed by Jeff Law

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
parent c6147dc4
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> 2016-09-26 Marek Polacek <polacek@redhat.com>
* system.h: Use __has_attribute to check whether the fallthrough * system.h: Use __has_attribute to check whether the fallthrough
......
...@@ -111,7 +111,7 @@ along with GCC; see the file COPYING3. If not see ...@@ -111,7 +111,7 @@ along with GCC; see the file COPYING3. If not see
assemble_name (FILE, LABEL); \ assemble_name (FILE, LABEL); \
if ((OFFSET) != 0) \ if ((OFFSET) != 0) \
fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC, \ fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC, \
(HOST_WIDE_INT) (OFFSET)) \ (HOST_WIDE_INT) (OFFSET)); \
break; \ break; \
case 8: \ case 8: \
/* This is a hack. There is no 64-bit section relative \ /* 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 ...@@ -123,7 +123,7 @@ along with GCC; see the file COPYING3. If not see
assemble_name (FILE, LABEL); \ assemble_name (FILE, LABEL); \
if ((OFFSET) != 0) \ if ((OFFSET) != 0) \
fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC, \ fprintf (FILE, "+" HOST_WIDE_INT_PRINT_DEC, \
(HOST_WIDE_INT) (OFFSET)) \ (HOST_WIDE_INT) (OFFSET)); \
fputs ("\n\t.long\t0", FILE); \ fputs ("\n\t.long\t0", FILE); \
break; \ break; \
default: \ default: \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment