From 5eb9a4c3948d18289deea4e1f405cc0fe65f20db Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Fri, 12 May 1995 19:45:00 +0000 Subject: [PATCH] fix typo From-SVN: r9656 --- gcc/config/i386/gas.h | 4 ++-- 1 file 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 -- 2.30.2