diff options
author | Sebastian Pop <sebastian.pop@amd.com> | 2009-02-24 06:47:56 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2009-02-24 06:47:56 +0000 |
commit | f1a558e04825c6037a97465b099391cce1ca5df7 (patch) | |
tree | 03dbde98fe3056b2c3957813884660d4779552ce /gcc/graphite.c | |
parent | e62a4cc1b9de4b48849f3201e977602a1f124f8d (diff) | |
download | gcc-f1a558e04825c6037a97465b099391cce1ca5df7.zip gcc-f1a558e04825c6037a97465b099391cce1ca5df7.tar.gz gcc-f1a558e04825c6037a97465b099391cce1ca5df7.tar.bz2 |
re PR middle-end/39260 (Failed to build lame-3.98-2 source with graphite)
2009-02-23 Sebastian Pop <sebastian.pop@amd.com>
PR tree-optimization/39260
* graphite.c (harmful_stmt_in_bb): Stop a SCoP when the basic block
contains a condition with a real type.
(build_scop_conditions_1): Conditions are always last_stmt of a bb.
* gcc.dg/graphite/pr39260.c: New.
From-SVN: r144403
Diffstat (limited to 'gcc/graphite.c')
-rw-r--r-- | gcc/graphite.c | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/gcc/graphite.c b/gcc/graphite.c index 1af3c14..a4cbdfd 100644 --- a/gcc/graphite.c +++ b/gcc/graphite.c @@ -1209,11 +1209,23 @@ static gimple harmful_stmt_in_bb (basic_block scop_entry, basic_block bb) { gimple_stmt_iterator gsi; + gimple stmt; for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi)) if (!stmt_simple_for_scop_p (scop_entry, gsi_stmt (gsi))) return gsi_stmt (gsi); + stmt = last_stmt (bb); + if (stmt && gimple_code (stmt) == GIMPLE_COND) + { + tree lhs = gimple_cond_lhs (stmt); + tree rhs = gimple_cond_rhs (stmt); + + if (TREE_CODE (TREE_TYPE (lhs)) == REAL_TYPE + || TREE_CODE (TREE_TYPE (rhs)) == REAL_TYPE) + return stmt; + } + return NULL; } @@ -3410,9 +3422,9 @@ build_scop_conditions_1 (VEC (gimple, heap) **conditions, bool res = true; int i, j; graphite_bb_p gbb; - gimple_stmt_iterator gsi; basic_block bb_child, bb_iter; VEC (basic_block, heap) *dom; + gimple stmt; /* Make sure we are in the SCoP. */ if (!bb_in_sese_p (bb, SCOP_REGION (scop))) @@ -3430,9 +3442,9 @@ build_scop_conditions_1 (VEC (gimple, heap) **conditions, dom = get_dominated_by (CDI_DOMINATORS, bb); - for (gsi = gsi_start_bb (bb); !gsi_end_p (gsi); gsi_next (&gsi)) + stmt = last_stmt (bb); + if (stmt) { - gimple stmt = gsi_stmt (gsi); VEC (edge, gc) *edges; edge e; |