From: Doug Evans Date: Fri, 26 Apr 1996 02:42:03 +0000 (+0000) Subject: * i386/go32.h (ASM_OUTPUT_ALIGN): Define. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=46d4a027e75d9d5dbafcf6132c9986e9b601cd80;p=gcc.git * i386/go32.h (ASM_OUTPUT_ALIGN): Define. From-SVN: r11891 --- 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))