This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c/14470] x86 optimizer error (?)


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-03-08 00:57 -------
Let me re-explain myself.
The problem is that d gets modified before the asignment back to t[d].  This what is expanded on the 
tree-ssa, see how the modification of d happens before the assignment back to t[d].
  T.1 = t[d];
  d = T.1;
  T.2 = T.1 + 1;
  t[d] = T.2;

-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14470


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]