From 46d4a027e75d9d5dbafcf6132c9986e9b601cd80 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 26 Apr 1996 02:42:03 +0000 Subject: [PATCH] * i386/go32.h (ASM_OUTPUT_ALIGN): Define. From-SVN: r11891 --- gcc/config/i386/go32.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gcc/config/i386/go32.h b/gcc/config/i386/go32.h index 5618a0dd0fb..e021bf780a8 100644 --- a/gcc/config/i386/go32.h +++ b/gcc/config/i386/go32.h @@ -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)) -- 2.30.2