diff options
author | Michael Meissner <meissner@gcc.gnu.org> | 1995-05-12 19:45:00 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 1995-05-12 19:45:00 +0000 |
commit | 5eb9a4c3948d18289deea4e1f405cc0fe65f20db (patch) | |
tree | a50b00334cd16bb8dc9bf4001b28511a6453672b | |
parent | efe7d0213ad67301f5422af882b13c64ebc62b50 (diff) | |
download | gcc-5eb9a4c3948d18289deea4e1f405cc0fe65f20db.zip gcc-5eb9a4c3948d18289deea4e1f405cc0fe65f20db.tar.gz gcc-5eb9a4c3948d18289deea4e1f405cc0fe65f20db.tar.bz2 |
fix typo
From-SVN: r9656
-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 52d64d0..0f071da 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 |