This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug tree-optimization/36630] [4.3/4.4 Regression] ICE in vect_update_ivs_after_vectorizer
- From: "irar at il dot ibm dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 16 Jul 2008 06:19:59 -0000
- Subject: [Bug tree-optimization/36630] [4.3/4.4 Regression] ICE in vect_update_ivs_after_vectorizer
- References: <bug-36630-87@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #5 from irar at il dot ibm dot com 2008-07-16 06:19 -------
This seems to fix the problem:
Index: tree-chrec.c
===================================================================
--- tree-chrec.c (revision 137271)
+++ tree-chrec.c (working copy)
@@ -696,6 +696,8 @@ chrec_component_in_loop_num (tree chrec,
tree component;
struct loop *loop = get_loop (loop_num), *chloop;
+ STRIP_NOPS (chrec);
+
if (automatically_generated_chrec_p (chrec))
return chrec;
I am fully checking it now.
Ira
--
irar at il dot ibm dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P2 |P3
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=36630