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 rtl-optimization/14863] [3.4 regression] unit-at-a-time causes miscompilation


------- Additional Comments From belyshev at lubercy dot com  2004-06-02 11:15 -------
>The minimized testcase is of course invalid.  I'm currently investigating

I would not say that. Consider:

pooma/src/Domain/IntervalIterator.h:109:
  //============================================================
  // Accessors
  //============================================================

  // Dereference operator. Returns const ref to internal Loc.

  inline const Value_t &operator*() const { PAssert(!done()); return val_m; }


pooma/src/Utilites/algorithms.h:227:
#if POOMA_NONSTANDARD_ITERATOR
  std::reverse_iterator<KillIterator, const int> rk_pos(kill_end);
  std::reverse_iterator<KillIterator, const int> rk_end(kill_begin);
#else
  std::reverse_iterator<KillIterator>            rk_pos(kill_end);
  std::reverse_iterator<KillIterator>            rk_end(kill_begin);
#endif


-- 


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


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