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:
parent
c6147dc433
commit
cfff6cdd17
2 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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: \
|
||||
|
|
Loading…
Add table
Reference in a new issue