diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-07 21:29:17 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-07 21:29:17 +0000 |
commit | 808f5ffcad6bece52aa7d44f5ddb29259266dd2a (patch) | |
tree | 918e18dafe9b656c36ffb535910b45ec3a02ba9f /gcc/global.c | |
parent | 0ab206a123dabe894de40f135233f4d657794b85 (diff) | |
download | gcc-808f5ffcad6bece52aa7d44f5ddb29259266dd2a.tar.gz |
* global.c (compute_regsets): Move declatation of "i" inside of
#ifdef ELIMINABLE_REGS to avoid unused variable bootstrap failure.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121697 138bc75d-0d04-0410-961f-82ee72b054a4
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 2271f3aa21b..b6bfa4d9f39 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) |