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 debug/41801] [4.5 Regression] VTA: ICE in loc_cmp.



------- Comment #1 from jakub at gcc dot gnu dot org  2009-10-26 14:06 -------
Simpler testcase at -g -O -milp32:
struct T
{
  void
  foo () volatile
  {
    __sync_lock_release (&t);
    __sync_synchronize ();
  }
  bool t;
};

int
main ()
{
  T t = { false };
  t.foo ();
}


-- 


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


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