aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGavin Koch <gavin@cygnus.com>1998-05-12 08:46:52 +0000
committerGavin Romig-Koch <gavin@gcc.gnu.org>1998-05-12 08:46:52 +0000
commita688e0b7d33b99325a9fbd5beaa2f53e2ae179fe (patch)
tree208698b50441f813dfbb396dec6969f952da2366 /gcc
parentec350bddd2d6250da7616b674183ccfa4e211262 (diff)
downloadgcc-a688e0b7d33b99325a9fbd5beaa2f53e2ae179fe.zip
gcc-a688e0b7d33b99325a9fbd5beaa2f53e2ae179fe.tar.gz
gcc-a688e0b7d33b99325a9fbd5beaa2f53e2ae179fe.tar.bz2
* config/mips/mips.h (ASM_OUTPUT_ALIGN): Remove trailing semi-colon.
From-SVN: r19698
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/mips/mips.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ef57271..09c6c02 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+Tue May 12 11:44:14 1998 Gavin Koch <gavin@cygnus.com>
+
+ * config/mips/mips.h (ASM_OUTPUT_ALIGN): Remove trailing semi-colon.
+
Tue May 12 11:38:31 1998 Gavin Koch <gavin@cygnus.com>
* config/mips/mips.md (dslot): Move after definition of "cpu"
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h
index f8907e5..78751e6 100644
--- a/gcc/config/mips/mips.h
+++ b/gcc/config/mips/mips.h
@@ -4215,7 +4215,7 @@ do { \
to a multiple of 2**LOG bytes. */
#define ASM_OUTPUT_ALIGN(STREAM,LOG) \
- fprintf (STREAM, "\t.align\t%d\n", (LOG));
+ fprintf (STREAM, "\t.align\t%d\n", (LOG))
/* This is how to output an assembler line to advance the location
counter by SIZE bytes. */