diff options
author | Eric Botcazou <ebotcazou@adacore.com> | 2009-05-02 09:11:23 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@gcc.gnu.org> | 2009-05-02 09:11:23 +0000 |
commit | 2ed1959a573fa444361624a6a96d235d49edddef (patch) | |
tree | 624ba63b301b556d73bb3831bf90a6861c0e42b1 | |
parent | d363a7e74ce8a8a5ea4fafb620e6a893e7e4aaf6 (diff) | |
download | gcc-2ed1959a573fa444361624a6a96d235d49edddef.zip gcc-2ed1959a573fa444361624a6a96d235d49edddef.tar.gz gcc-2ed1959a573fa444361624a6a96d235d49edddef.tar.bz2 |
* store-motion.c (compute_store_table): Add ENABLE_CHECKING guard.
From-SVN: r147054
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/store-motion.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b023c42..1a46e32 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2009-05-02 Eric Botcazou <ebotcazou@adacore.com> + + * store-motion.c (compute_store_table): Add ENABLE_CHECKING guard. + 2009-05-02 Steven Bosscher <steven@gcc.gnu.org> * varasm.c: Do not include c-pragma.h. diff --git a/gcc/store-motion.c b/gcc/store-motion.c index 7ff0ac6..5dabd1a 100644 --- a/gcc/store-motion.c +++ b/gcc/store-motion.c @@ -646,7 +646,9 @@ compute_store_table (void) { int ret; basic_block bb; +#ifdef ENABLE_CHECKING unsigned regno; +#endif rtx insn, tmp; df_ref *def_rec; int *last_set_in, *already_set; |