* i386/go32.h (ASM_OUTPUT_ALIGN): Define.
authorDoug Evans <dje@gnu.org>
Fri, 26 Apr 1996 02:42:03 +0000 (02:42 +0000)
committerDoug Evans <dje@gnu.org>
Fri, 26 Apr 1996 02:42:03 +0000 (02:42 +0000)
From-SVN: r11891

gcc/config/i386/go32.h

index 5618a0d..e021bf7 100644 (file)
@@ -61,4 +61,10 @@ dtor_section ()                                                      \
     fprintf (FILE, "\n");                      \
   } while (0)
 
+/* 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))