diff options
author | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-02 09:11:23 +0000 |
---|---|---|
committer | ebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-05-02 09:11:23 +0000 |
commit | aa7ab40e3af386a2f050e62ac66fdffa036c9079 (patch) | |
tree | 624ba63b301b556d73bb3831bf90a6861c0e42b1 /gcc/store-motion.c | |
parent | c778f6b827d3c961151be7dda996baacf37eea27 (diff) | |
download | gcc-aa7ab40e3af386a2f050e62ac66fdffa036c9079.tar.gz |
* store-motion.c (compute_store_table): Add ENABLE_CHECKING guard.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@147054 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/store-motion.c')
-rw-r--r-- | gcc/store-motion.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/store-motion.c b/gcc/store-motion.c index 7ff0ac69dc6..5dabd1a8f20 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; |