OSDN Git Service

* store-motion.c (compute_store_table): Add ENABLE_CHECKING guard.
authorebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 2 May 2009 09:11:23 +0000 (09:11 +0000)
committerebotcazou <ebotcazou@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 2 May 2009 09:11:23 +0000 (09:11 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@147054 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/store-motion.c

index b023c42..1a46e32 100644 (file)
@@ -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.
index 7ff0ac6..5dabd1a 100644 (file)
@@ -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;