diff options
Diffstat (limited to 'gcc/reg-stack.c')
-rw-r--r-- | gcc/reg-stack.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/reg-stack.c b/gcc/reg-stack.c index 4f28a2ac6fc..a1c4187f6fc 100644 --- a/gcc/reg-stack.c +++ b/gcc/reg-stack.c @@ -1,6 +1,6 @@ /* Register to Stack convert for GNU compiler. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, - 1999, 2000, 2001 Free Software Foundation, Inc. + 1999, 2000, 2001, 2002 Free Software Foundation, Inc. This file is part of GCC. @@ -226,7 +226,7 @@ static rtx FP_mode_reg[LAST_STACK_REG+1-FIRST_STACK_REG][(int) MAX_MACHINE_MODE]; #define FP_MODE_REG(regno,mode) \ - (FP_mode_reg[(regno)-FIRST_STACK_REG][(int)(mode)]) + (FP_mode_reg[(regno)-FIRST_STACK_REG][(int) (mode)]) /* Used to initialize uninitialized registers. */ static rtx nan; @@ -1438,7 +1438,7 @@ subst_stack_regs_pat (insn, regstack, pat) } /* ??? Uninitialized USE should not happen. */ else if (get_hard_regnum (regstack, *src) == -1) - abort(); + abort (); break; case CLOBBER: |