cygming.h (ASM_OUTPUT_DWARF_OFFSET): Fix typo.
authorLiu Hao <lh_mouse@126.com>
Mon, 26 Sep 2016 15:59:27 +0000 (09:59 -0600)
committerJeff Law <law@gcc.gnu.org>
Mon, 26 Sep 2016 15:59:27 +0000 (09:59 -0600)
2016-09-26  LH Mouse  <lh_mouse@126.com>

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

From-SVN: r240500

gcc/ChangeLog
gcc/config/i386/cygming.h

index f7122e258d1e84989e317098a58607c375b7e7ed..289a9759a2a727b6a74e7e42581c954729529213 100644 (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
index 60e11b481e93a4ad99841b403202aa61e29e79c0..1d9675eaf93e34cb8befda456d770d7bf7fd7e41 100644 (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:                                                 \