diff options
author | Doug Evans <dje@gnu.org> | 1996-04-26 02:42:03 +0000 |
---|---|---|
committer | Doug Evans <dje@gnu.org> | 1996-04-26 02:42:03 +0000 |
commit | 46d4a027e75d9d5dbafcf6132c9986e9b601cd80 (patch) | |
tree | ba0baa73736a10602b0f7b57c19204671c8bac5b /gcc | |
parent | d45e8c4c759be4d6b6e5ce9f448cb861c0df0060 (diff) | |
download | gcc-46d4a027e75d9d5dbafcf6132c9986e9b601cd80.zip gcc-46d4a027e75d9d5dbafcf6132c9986e9b601cd80.tar.gz gcc-46d4a027e75d9d5dbafcf6132c9986e9b601cd80.tar.bz2 |
* i386/go32.h (ASM_OUTPUT_ALIGN): Define.
From-SVN: r11891
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/i386/go32.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/config/i386/go32.h b/gcc/config/i386/go32.h index 5618a0d..e021bf7 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)) |