diff options
author | Roger Sayle <roger@eyesopen.com> | 2007-02-07 21:29:17 +0000 |
---|---|---|
committer | Roger Sayle <sayle@gcc.gnu.org> | 2007-02-07 21:29:17 +0000 |
commit | 28890c82436218c1e10b28339a21453e8d6c4cbd (patch) | |
tree | 918e18dafe9b656c36ffb535910b45ec3a02ba9f /gcc/global.c | |
parent | 56c9f04bb7bfff97a61286bcb792e1ed8c66d50f (diff) | |
download | gcc-28890c82436218c1e10b28339a21453e8d6c4cbd.zip gcc-28890c82436218c1e10b28339a21453e8d6c4cbd.tar.gz gcc-28890c82436218c1e10b28339a21453e8d6c4cbd.tar.bz2 |
global.c (compute_regsets): Move declatation of "i" inside of #ifdef ELIMINABLE_REGS to avoid unused...
* global.c (compute_regsets): Move declatation of "i" inside of
#ifdef ELIMINABLE_REGS to avoid unused variable bootstrap failure.
From-SVN: r121697
Diffstat (limited to 'gcc/global.c')
-rw-r--r-- | gcc/global.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/global.c b/gcc/global.c index 2271f3a..b6bfa4d 100644 --- a/gcc/global.c +++ b/gcc/global.c @@ -346,8 +346,8 @@ compute_regsets (char asm_clobbered[FIRST_PSEUDO_REGISTER], { #ifdef ELIMINABLE_REGS static const struct {const int from, to; } eliminables[] = ELIMINABLE_REGS; -#endif size_t i; +#endif int need_fp = (! flag_omit_frame_pointer || (current_function_calls_alloca && EXIT_IGNORE_STACK) |