diff options
author | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-08 17:49:28 +0000 |
---|---|---|
committer | spop <spop@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-03-08 17:49:28 +0000 |
commit | 2d0a2aaadcca869d985e2152914b82771207f754 (patch) | |
tree | 766e0908eb0fd35f80c2b73861451a28130d5ee2 /gcc/graphite-clast-to-gimple.c | |
parent | 2996b7123327b7a3f213d8b046902b8225607abd (diff) | |
download | gcc-2d0a2aaadcca869d985e2152914b82771207f754.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@157285 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-clast-to-gimple.c')
-rw-r--r-- | gcc/graphite-clast-to-gimple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/graphite-clast-to-gimple.c b/gcc/graphite-clast-to-gimple.c index 3e82075f2bc..fd631a4847e 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)) |