2008-09-09 Richard Guenther <rguenther@suse.de>
authorrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 9 Sep 2008 10:06:54 +0000 (10:06 +0000)
committerrguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4>
Tue, 9 Sep 2008 10:06:54 +0000 (10:06 +0000)
PR tree-optimization/37433
* tree-ssa-ccp.c (ccp_fold): Properly guard folding of
function calls.

* gcc.c-torture/compile/pr37433.c: New testcase.

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

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

index c7848ff..970450b 100644 (file)
@@ -1,5 +1,11 @@
 2008-09-09  Richard Guenther  <rguenther@suse.de>
 
+       PR tree-optimization/37433
+       * tree-ssa-ccp.c (ccp_fold): Properly guard folding of
+       function calls.
+
+2008-09-09  Richard Guenther  <rguenther@suse.de>
+
        PR tree-optimization/37387
        * tree-ssa-ifcombine.c (ifcombine_iforif): Convert the name
        and bits to a common type.
index c83bb25..1378257 100644 (file)
@@ -1,5 +1,10 @@
 2008-09-09  Richard Guenther  <rguenther@suse.de>
 
+       PR tree-optimization/37433
+       * gcc.c-torture/compile/pr37433.c: New testcase.
+
+2008-09-09  Richard Guenther  <rguenther@suse.de>
+
        PR tree-optimization/37387
        * gcc.c-torture/compile/pr37387.c: New testcase.
 
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr37433.c b/gcc/testsuite/gcc.c-torture/compile/pr37433.c
new file mode 100644 (file)
index 0000000..0ba1179
--- /dev/null
@@ -0,0 +1,11 @@
+int regex_subst(void)
+{
+  const void *subst = "";
+  return (*(int (*)(int))subst) (0);
+}
+
+int foobar (void)
+{
+  int x;
+  return (*(int (*)(void))&x) ();
+}
index 8f700c4..22626a5 100644 (file)
@@ -1047,6 +1047,7 @@ ccp_fold (gimple stmt)
              fn = val->value;
          }
        if (TREE_CODE (fn) == ADDR_EXPR
+           && TREE_CODE (TREE_OPERAND (fn, 0)) == FUNCTION_DECL
            && DECL_BUILT_IN (TREE_OPERAND (fn, 0)))
          {
            tree *args = XALLOCAVEC (tree, gimple_call_num_args (stmt));