diff options
author | Tobias Grosser <grosser@fim.uni-passau.de> | 2010-03-08 17:49:28 +0000 |
---|---|---|
committer | Sebastian Pop <spop@gcc.gnu.org> | 2010-03-08 17:49:28 +0000 |
commit | e3f81db10f5c278a75b7e9c76db402ee6e5c73e2 (patch) | |
tree | 766e0908eb0fd35f80c2b73861451a28130d5ee2 | |
parent | c7631a71ab1f17a1c35f2ed902d9e01869c917f7 (diff) | |
download | gcc-e3f81db10f5c278a75b7e9c76db402ee6e5c73e2.zip gcc-e3f81db10f5c278a75b7e9c76db402ee6e5c73e2.tar.gz gcc-e3f81db10f5c278a75b7e9c76db402ee6e5c73e2.tar.bz2 |
Do not short-cut code generation with gloog_error.
2010-03-04 Tobias Grosser <grosser@fim.uni-passau.de>
* graphite-clast-to-gimple.c (translate_clast): Do not short-cut
code generation with gloog_error.
From-SVN: r157285
-rw-r--r-- | gcc/ChangeLog.graphite | 5 | ||||
-rw-r--r-- | gcc/graphite-clast-to-gimple.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog.graphite b/gcc/ChangeLog.graphite index 25e0c51..ff6533a 100644 --- a/gcc/ChangeLog.graphite +++ b/gcc/ChangeLog.graphite @@ -1,3 +1,8 @@ +2010-03-04 Tobias Grosser <grosser@fim.uni-passau.de> + + * graphite-clast-to-gimple.c (translate_clast): Do not short-cut + code generation with gloog_error. + 2010-03-04 Sebastian Pop <sebastian.pop@amd.com> * sese.c (expand_scalar_variables_ssa_name): Add new argument for type. diff --git a/gcc/graphite-clast-to-gimple.c b/gcc/graphite-clast-to-gimple.c index 3e82075..fd631a4 100644 --- a/gcc/graphite-clast-to-gimple.c +++ b/gcc/graphite-clast-to-gimple.c @@ -952,7 +952,7 @@ translate_clast (sese region, loop_p context_loop, struct clast_stmt *stmt, htab_t newivs_index, htab_t bb_pbb_mapping, int level, htab_t params_index) { - if (!stmt || gloog_error) + if (!stmt) return next_e; if (CLAST_STMT_IS_A (stmt, stmt_root)) |