aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2007-04-26 15:28:14 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2007-04-26 15:28:14 +0000
commit5c7ec4f0d5730d28451003ab8304b388f42f2a85 (patch)
treeba24980895b374e7263f14892f3b83578d5793d0
parent8931743ffe7d282a25c3d05a7493d6712f327457 (diff)
downloadgcc-5c7ec4f0d5730d28451003ab8304b388f42f2a85.zip
gcc-5c7ec4f0d5730d28451003ab8304b388f42f2a85.tar.gz
gcc-5c7ec4f0d5730d28451003ab8304b388f42f2a85.tar.bz2
re PR tree-optimization/31703 (Gcc 4.3 revision 124101 failed to compile gcc 3.2)
2007-04-26 Richard Guenther <rguenther@suse.de> PR tree-optimization/31703 * tree-ssa-loop-im.c (rewrite_bittest): Make sure to use the right type for the target of the bittest. * gcc.c-torture/compile/pr31703.c: New testcase. * gcc.dg/tree-ssa/ssa-lim-1.c: Adjust pattern. * gcc.dg/tree-ssa/ssa-lim-2.c: Likewise. From-SVN: r124190
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/testsuite/ChangeLog7
-rw-r--r--gcc/testsuite/gcc.c-torture/compile/pr31703.c11
-rw-r--r--gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-1.c2
-rw-r--r--gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-2.c2
-rw-r--r--gcc/tree-ssa-loop-im.c14
6 files changed, 34 insertions, 8 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 9e27031..5e7988d 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,9 @@
+2007-04-26 Richard Guenther <rguenther@suse.de>
+
+ PR tree-optimization/31703
+ * tree-ssa-loop-im.c (rewrite_bittest): Make sure to use
+ the right type for the target of the bittest.
+
2007-04-26 Richard Sandiford <richard@codesourcery.com>
* config/i386/vx-common.h (RETURN_IN_MEMORY): Use
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 4310a1c..b2db604 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,10 @@
+2007-04-26 Richard Guenther <rguenther@suse.de>
+
+ PR tree-optimization/31703
+ * gcc.c-torture/compile/pr31703.c: New testcase.
+ * gcc.dg/tree-ssa/ssa-lim-1.c: Adjust pattern.
+ * gcc.dg/tree-ssa/ssa-lim-2.c: Likewise.
+
2007-04-26 Wolfgang Gellerich <gellerich@de.ibm.com>
* gfortran.dg/open_errors.f90: Added if statements checking
diff --git a/gcc/testsuite/gcc.c-torture/compile/pr31703.c b/gcc/testsuite/gcc.c-torture/compile/pr31703.c
new file mode 100644
index 0000000..e463205
--- /dev/null
+++ b/gcc/testsuite/gcc.c-torture/compile/pr31703.c
@@ -0,0 +1,11 @@
+typedef unsigned long long HARD_REG_ELT_TYPE;
+static HARD_REG_ELT_TYPE reload_reg_used_in_output_addr[30];
+int reload_reg_reaches_end_p (unsigned int regno, int opnum)
+{
+ int i;
+ for (i = opnum + 1; i < opnum; i++)
+ if (reload_reg_used_in_output_addr[i]
+ & ((HARD_REG_ELT_TYPE)1 << regno))
+ return 0;
+}
+
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-1.c b/gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-1.c
index f76c5d4..db36ff0 100644
--- a/gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-1.c
+++ b/gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-1.c
@@ -18,5 +18,5 @@ quantum_toffoli (int control1, int control2, int target,
}
}
-/* { dg-final { scan-tree-dump-times "shifttmp" 6 "lim" } } */
+/* { dg-final { scan-tree-dump-times "1 <<" 3 "lim" } } */
/* { dg-final { cleanup-tree-dump "lim" } } */
diff --git a/gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-2.c b/gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-2.c
index 286e0e8..7b18b1c 100644
--- a/gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-2.c
+++ b/gcc/testsuite/gcc.dg/tree-ssa/ssa-lim-2.c
@@ -18,5 +18,5 @@ int size)
}
}
-/* { dg-final { scan-tree-dump-times "shifttmp" 6 "lim" } } */
+/* { dg-final { scan-tree-dump-times "1 <<" 3 "lim" } } */
/* { dg-final { cleanup-tree-dump "lim" } } */
diff --git a/gcc/tree-ssa-loop-im.c b/gcc/tree-ssa-loop-im.c
index 340e6a1..1e36fae 100644
--- a/gcc/tree-ssa-loop-im.c
+++ b/gcc/tree-ssa-loop-im.c
@@ -618,7 +618,7 @@ rewrite_reciprocal (block_stmt_iterator *bsi)
static tree
rewrite_bittest (block_stmt_iterator *bsi)
{
- tree stmt, lhs, rhs, var, name, stmt1, stmt2, t;
+ tree stmt, lhs, rhs, var, name, use_stmt, stmt1, stmt2, t;
use_operand_p use;
stmt = bsi_stmt (*bsi);
@@ -627,10 +627,10 @@ rewrite_bittest (block_stmt_iterator *bsi)
/* Verify that the single use of lhs is a comparison against zero. */
if (TREE_CODE (lhs) != SSA_NAME
- || !single_imm_use (lhs, &use, &stmt1)
- || TREE_CODE (stmt1) != COND_EXPR)
+ || !single_imm_use (lhs, &use, &use_stmt)
+ || TREE_CODE (use_stmt) != COND_EXPR)
return stmt;
- t = COND_EXPR_COND (stmt1);
+ t = COND_EXPR_COND (use_stmt);
if (TREE_OPERAND (t, 0) != lhs
|| (TREE_CODE (t) != NE_EXPR
&& TREE_CODE (t) != EQ_EXPR)
@@ -680,11 +680,13 @@ rewrite_bittest (block_stmt_iterator *bsi)
/* A & (1 << B) */
t = fold_build2 (BIT_AND_EXPR, TREE_TYPE (a), a, name);
- stmt2 = build_gimple_modify_stmt (lhs, t);
+ stmt2 = build_gimple_modify_stmt (var, t);
+ name = make_ssa_name (var, stmt2);
+ GIMPLE_STMT_OPERAND (stmt2, 0) = name;
+ SET_USE (use, name);
bsi_insert_before (bsi, stmt1, BSI_SAME_STMT);
bsi_replace (bsi, stmt2, true);
- SSA_NAME_DEF_STMT (lhs) = stmt2;
return stmt1;
}