Commit e0f931d2 by Mike Stump

Fix whitespacing.

From-SVN: r112788
parent ae582f77
...@@ -294,14 +294,14 @@ do { \ ...@@ -294,14 +294,14 @@ do { \
#ifdef HAVE_GAS_MAX_SKIP_P2ALIGN #ifdef HAVE_GAS_MAX_SKIP_P2ALIGN
/* This is supported in cctools 465 and later. The macro test /* This is supported in cctools 465 and later. The macro test
above prevents using it in earlier build environments. */ above prevents using it in earlier build environments. */
#define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE,LOG,MAX_SKIP) \ #define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE,LOG,MAX_SKIP) \
if ((LOG) != 0) \ if ((LOG) != 0) \
{ \ { \
if ((MAX_SKIP) == 0) \ if ((MAX_SKIP) == 0) \
fprintf ((FILE), "\t.p2align %d\n", (LOG)); \ fprintf ((FILE), "\t.p2align %d\n", (LOG)); \
else \ else \
fprintf ((FILE), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP)); \ fprintf ((FILE), "\t.p2align %d,,%d\n", (LOG), (MAX_SKIP)); \
} }
#endif #endif
#define PROFILE_HOOK(LABEL) output_profile_hook (LABEL) #define PROFILE_HOOK(LABEL) output_profile_hook (LABEL)
......
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