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 target/29984] SPE GCC segfaults with MAX_EXPR <a, a>



------- Comment #4 from pinskia at gcc dot gnu dot org  2006-11-26 08:05 -------
Here is a short testcase:
int f(int a, int b)
{
  int i;
  int c = a>=b?a:b;
  for(i = 0;i<1000;i++) ;  // Needed otherwise Jump threading gets in the way
  int d = c>=a?c:a;
  return d;
}


-- 


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


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