2011-02-14-InfLoop.ll 819 B

12345678910111213141516171819
  1. ; This testcase causes an infinite loop in the instruction combiner,
  2. ; because it changes a pattern and the original pattern is almost
  3. ; identical to the newly-generated pattern.
  4. ; RUN: opt < %s -instcombine -disable-output
  5. ;PR PR9216
  6. target triple = "x86_64-unknown-linux-gnu"
  7. define <4 x float> @m_387(i8* noalias nocapture %A, i8* nocapture %B, <4 x i1> %C) nounwind {
  8. entry:
  9. %movcsext20 = sext <4 x i1> %C to <4 x i32>
  10. %tmp2389 = xor <4 x i32> %movcsext20, <i32 -1, i32 -1, i32 -1, i32 -1>
  11. %movcand25 = and <4 x i32> %tmp2389, <i32 undef, i32 undef, i32 undef, i32 -1>
  12. %movcor26 = or <4 x i32> %movcand25, zeroinitializer
  13. %L2 = bitcast <4 x i32> %movcor26 to <4 x float>
  14. %L3 = shufflevector <4 x float> zeroinitializer, <4 x float> %L2, <4 x i32> <i32 0, i32 1, i32 2, i32 7>
  15. ret <4 x float> %L3
  16. }