]> gcc.gnu.org Git - gcc.git/commitdiff
fix typo
authorMichael Meissner <meissner@gcc.gnu.org>
Fri, 12 May 1995 19:45:00 +0000 (19:45 +0000)
committerMichael Meissner <meissner@gcc.gnu.org>
Fri, 12 May 1995 19:45:00 +0000 (19:45 +0000)
From-SVN: r9656

gcc/config/i386/gas.h

index 52d64d07082e9bcb27b0f2c95e7768b4e162604f..0f071da2fb1b13b69db2cd0fbb71243be447aeaf 100644 (file)
@@ -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)
 
 \f
 /* A C statement or statements which output an assembler instruction
This page took 0.06174 seconds and 5 git commands to generate.