Tidy do-while.

Requested by:	bde
This commit is contained in:
David E. O'Brien 2002-06-06 03:26:36 +00:00
parent 5935c07540
commit 3c3942fcfc
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97907

View File

@ -259,13 +259,13 @@ Boston, MA 02111-1307, USA. */
#undef ASM_OUTPUT_ALIGN
#define ASM_OUTPUT_ALIGN(FILE, LOG) \
do { \
if ((LOG)!=0) { \
if (in_text_section()) \
fprintf ((FILE), "\t.p2align %d,0x90\n", (LOG)); \
else \
fprintf ((FILE), "\t.p2align %d\n", (LOG)); \
} \
do { \
if ((LOG)!=0) { \
if (in_text_section()) \
fprintf ((FILE), "\t.p2align %d,0x90\n", (LOG)); \
else \
fprintf ((FILE), "\t.p2align %d\n", (LOG)); \
} \
} while (0)
#undef ASM_OUTPUT_ALIGNED_COMMON