Correct formatting in previous patch.

From-SVN: r58692
This commit is contained in:
Dale Johannesen 2002-10-31 20:32:49 +00:00 committed by Dale Johannesen
parent e381c27adc
commit cdc58a822b
2 changed files with 14 additions and 8 deletions

View File

@ -1,3 +1,7 @@
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.

View File

@ -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. */