Commit cdc58a82 by Dale Johannesen Committed by Dale Johannesen

Correct formatting in previous patch.

From-SVN: r58692
parent e381c27a
Thu Oct 31 Dale Johannesen <dalej@apple.com> 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. * config/rs6000/darwin.h: Enable -falign-xxx options.
Thu Oct 31 18:08:00 CET 2002 Jan Hubicka <jh@suse.cz> Thu Oct 31 18:08:00 CET 2002 Jan Hubicka <jh@suse.cz>
......
...@@ -141,13 +141,15 @@ Boston, MA 02111-1307, USA. */ ...@@ -141,13 +141,15 @@ Boston, MA 02111-1307, USA. */
"nop" instruction as padding. */ "nop" instruction as padding. */
#define ASM_OUTPUT_ALIGN_WITH_NOP(FILE,LOG) \ #define ASM_OUTPUT_ALIGN_WITH_NOP(FILE,LOG) \
do { \ do \
if ((LOG) < 3) { \ { \
if ((LOG) < 3) \
{ \
ASM_OUTPUT_ALIGN (FILE,LOG); \ ASM_OUTPUT_ALIGN (FILE,LOG); \
} \ } \
else /* nop == ori r0,r0,0 */ \ else /* nop == ori r0,r0,0 */ \
fprintf (FILE, "\t.align32 %d,0x60000000\n", (LOG)); \ fprintf (FILE, "\t.align32 %d,0x60000000\n", (LOG)); \
} while (0); } while (0)
/* Generate insns to call the profiler. */ /* Generate insns to call the profiler. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment