OSDN Git Service

2010-04-02 Richard Guenther <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 2 Apr 2010 16:50:04 +0000 (16:50 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 2 Apr 2010 16:50:04 +0000 (16:50 +0000)
PR tree-optimization/43629
* tree-ssa-ccp.c (likely_value): Reset all_undefined_operands
if we have seen a constant value.

* gcc.c-torture/execute/pr43629.c: New testcase.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157944 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/ChangeLog
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.c-torture/execute/pr43629.c [new file with mode: 0644]
gcc/tree-ssa-ccp.c

index a1e3c97..9ba9e7a 100644 (file)
@@ -1,3 +1,9 @@
+2010-04-02  Richard Guenther  <rguenther@suse.de>
+
+       PR tree-optimization/43629
+       * tree-ssa-ccp.c (likely_value): Reset all_undefined_operands
+       if we have seen a constant value.
+
 2010-04-02  Joseph Myers  <joseph@codesourcery.com>
 
        * read-rtl.c (read_rtx_1): Give an error for EOF while looking for
index 16b901b..54ec007 100644 (file)
@@ -1,3 +1,8 @@
+2010-04-02  Richard Guenther  <rguenther@suse.de>
+
+       PR tree-optimization/43629
+       * gcc.c-torture/execute/pr43629.c: New testcase.
+
 2010-04-01  Janne Blomqvist  <jb@gcc.gnu.org>
             Dominique d'Humieres  <dominiq@lps.ens.fr>
 
diff --git a/gcc/testsuite/gcc.c-torture/execute/pr43629.c b/gcc/testsuite/gcc.c-torture/execute/pr43629.c
new file mode 100644 (file)
index 0000000..10c0196
--- /dev/null
@@ -0,0 +1,13 @@
+int flag;
+extern void abort (void);
+int main()
+{
+  int x;
+  if (flag)
+    x = -1;
+  else 
+    x &= 0xff;
+  if (x & ~0xff)
+    abort ();
+  return 0;
+}
index 03c3500..fcfdd18 100644 (file)
@@ -1,6 +1,6 @@
 /* Conditional constant propagation pass for the GNU compiler.
-   Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009
-   Free Software Foundation, Inc.
+   Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
+   2010 Free Software Foundation, Inc.
    Adapted from original RTL SSA-CCP by Daniel Berlin <dberlin@dberlin.org>
    Adapted to GIMPLE trees by Diego Novillo <dnovillo@redhat.com>
 
@@ -558,6 +558,9 @@ likely_value (gimple stmt)
        has_constant_operand = true;
     }
 
+  if (has_constant_operand)
+    all_undefined_operands = false;
+
   /* If the operation combines operands like COMPLEX_EXPR make sure to
      not mark the result UNDEFINED if only one part of the result is
      undefined.  */