aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Meissner <meissner@gcc.gnu.org>1996-03-13 18:30:30 +0000
committerMichael Meissner <meissner@gcc.gnu.org>1996-03-13 18:30:30 +0000
commitd5967781ed1b807cc7a1609796de1c5e5ba9af42 (patch)
tree0586fe629a3ae9c923f124b8b199c8076d84aedf
parent2aa35c631298dc5e870cf7d44b069b4fc02b6dd3 (diff)
downloadgcc-d5967781ed1b807cc7a1609796de1c5e5ba9af42.zip
gcc-d5967781ed1b807cc7a1609796de1c5e5ba9af42.tar.gz
gcc-d5967781ed1b807cc7a1609796de1c5e5ba9af42.tar.bz2
Fix ASM_OUTPUT_ALIGN
From-SVN: r11525
-rw-r--r--gcc/config/i386/cygwin32.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/gcc/config/i386/cygwin32.h b/gcc/config/i386/cygwin32.h
index 9a5ed33..b495c1c 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))