aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2002-10-31 20:32:49 +0000
committerDale Johannesen <dalej@gcc.gnu.org>2002-10-31 20:32:49 +0000
commitcdc58a822b9a71686ae8482d647e5f1e988382db (patch)
treeb291fc9db9d67b8a5037a28f4d94da5f36559d14
parente381c27adc3a1648888d7ef5fc33f4529cbede15 (diff)
downloadgcc-cdc58a822b9a71686ae8482d647e5f1e988382db.zip
gcc-cdc58a822b9a71686ae8482d647e5f1e988382db.tar.gz
gcc-cdc58a822b9a71686ae8482d647e5f1e988382db.tar.bz2
Correct formatting in previous patch.
From-SVN: r58692
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/config/rs6000/darwin.h18
2 files changed, 14 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 6a99d0d..32ce1a8 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
Thu Oct 31 Dale Johannesen <dalej@apple.com>
+ * config/rs6000/darwin.h: Correct formatting in previous.
+
+Thu Oct 31 Dale Johannesen <dalej@apple.com>
+
* config/rs6000/darwin.h: Enable -falign-xxx options.
Thu Oct 31 18:08:00 CET 2002 Jan Hubicka <jh@suse.cz>
diff --git a/gcc/config/rs6000/darwin.h b/gcc/config/rs6000/darwin.h
index 4cee760..4b3a902 100644
--- a/gcc/config/rs6000/darwin.h
+++ b/gcc/config/rs6000/darwin.h
@@ -140,14 +140,16 @@ Boston, MA 02111-1307, USA. */
the location counter to a multiple of 2**LOG bytes using the
"nop" instruction as padding. */
-#define ASM_OUTPUT_ALIGN_WITH_NOP(FILE,LOG) \
- do { \
- if ((LOG) < 3) { \
- ASM_OUTPUT_ALIGN (FILE,LOG); \
- } \
- else /* nop == ori r0,r0,0 */ \
- fprintf (FILE, "\t.align32 %d,0x60000000\n", (LOG)); \
- } while (0);
+#define ASM_OUTPUT_ALIGN_WITH_NOP(FILE,LOG) \
+ do \
+ { \
+ if ((LOG) < 3) \
+ { \
+ ASM_OUTPUT_ALIGN (FILE,LOG); \
+ } \
+ else /* nop == ori r0,r0,0 */ \
+ fprintf (FILE, "\t.align32 %d,0x60000000\n", (LOG)); \
+ } while (0)
/* Generate insns to call the profiler. */