turn off code clobbering optimization for static variables until
authorKenneth Zadeck <zadeck@gcc.gnu.org>
Wed, 15 Sep 2004 20:54:38 +0000 (20:54 +0000)
committerKenneth Zadeck <zadeck@gcc.gnu.org>
Wed, 15 Sep 2004 20:54:38 +0000 (20:54 +0000)
analysis behind it can be fixed in a couple of days.

From-SVN: r87564

gcc/tree-ssa-operands.c

index 83f0c369ae0e40d884daeef440e9b37cfdd1b948..3f28d75675b5a4e20fea662cf91979cd1e92ab17 100644 (file)
@@ -1586,11 +1586,15 @@ add_call_clobber_ops (tree stmt, tree callee)
         each static if the call being processed does not read or
         write that variable.  */
 
-      bitmap not_read_b = callee 
+      /* hack to turn off the optimization until I can get the bug fixed. */
+      /*      bitmap not_read_b = callee 
        ? get_global_statics_not_read (callee) : NULL; 
       bitmap not_written_b = callee 
        ? get_global_statics_not_written (callee) : NULL; 
+      */
 
+      bitmap not_read_b = NULL; 
+      bitmap not_written_b = NULL; 
 
       EXECUTE_IF_SET_IN_BITMAP (call_clobbered_vars, 0, i,
        {