From b82438e9e21580893b7e6228cc60685518de5e2d Mon Sep 17 00:00:00 2001 From: dalej Date: Thu, 31 Oct 2002 20:32:49 +0000 Subject: [PATCH] Correct formatting in previous patch. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@58692 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ChangeLog | 4 ++++ gcc/config/rs6000/darwin.h | 18 ++++++++++-------- 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6a99d0d5f3c..32ce1a85c1d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ Thu Oct 31 Dale Johannesen + * config/rs6000/darwin.h: Correct formatting in previous. + +Thu Oct 31 Dale Johannesen + * config/rs6000/darwin.h: Enable -falign-xxx options. Thu Oct 31 18:08:00 CET 2002 Jan Hubicka diff --git a/gcc/config/rs6000/darwin.h b/gcc/config/rs6000/darwin.h index 4cee7603090..4b3a902cb39 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. */ -- 2.11.0