From d5967781ed1b807cc7a1609796de1c5e5ba9af42 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Wed, 13 Mar 1996 18:30:30 +0000 Subject: [PATCH] Fix ASM_OUTPUT_ALIGN From-SVN: r11525 --- gcc/config/i386/cygwin32.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/gcc/config/i386/cygwin32.h b/gcc/config/i386/cygwin32.h index 9a5ed33b4db..b495c1ccece 100644 --- a/gcc/config/i386/cygwin32.h +++ b/gcc/config/i386/cygwin32.h @@ -202,3 +202,11 @@ while (0) stabs entry for the function name first. */ #define DBX_FUNCTION_FIRST + +/* This is how to output an assembler line + that says to advance the location counter + to a multiple of 2**LOG bytes. */ + +#undef ASM_OUTPUT_ALIGN +#define ASM_OUTPUT_ALIGN(FILE,LOG) \ + if ((LOG)!=0) fprintf ((FILE), "\t.align %d\n", 1<<(LOG)) -- 2.30.2