diff options
author | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-12 19:45:00 +0000 |
---|---|---|
committer | meissner <meissner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-05-12 19:45:00 +0000 |
commit | f72af5c496ff10eedf22c93d0c85898a7ce1b3eb (patch) | |
tree | a50b00334cd16bb8dc9bf4001b28511a6453672b /gcc/config/i386/gas.h | |
parent | 9dbac5afc925ba987511c4fedb6e2d8fbc5a7731 (diff) | |
download | gcc-f72af5c496ff10eedf22c93d0c85898a7ce1b3eb.tar.gz |
fix typo
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@9656 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/gas.h')
-rw-r--r-- | gcc/config/i386/gas.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/gas.h b/gcc/config/i386/gas.h index 52d64d07082..0f071da2fb1 100644 --- a/gcc/config/i386/gas.h +++ b/gcc/config/i386/gas.h @@ -83,13 +83,13 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #undef ASM_OUTPUT_ALIGN_CODE #define ASM_OUTPUT_ALIGN_CODE(FILE) \ - fprintf ((FILE), "\t.align %d,0x90\n", 1 << i386_align_jumps) + fprintf ((FILE), "\t.align %d,0x90\n", i386_align_jumps) /* Align start of loop at 4-byte boundary. */ #undef ASM_OUTPUT_LOOP_ALIGN #define ASM_OUTPUT_LOOP_ALIGN(FILE) \ - fprintf ((FILE), "\t.align %d,0x90\n", 1 << i386_align_loops) + fprintf ((FILE), "\t.align %d,0x90\n", i386_align_loops) /* A C statement or statements which output an assembler instruction |