load-pre-licm.ll 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ; RUN: opt -S -basicaa -gvn < %s | FileCheck %s
  2. target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:128:128-n8:16:32"
  3. target triple = "i386-apple-darwin11.0.0"
  4. @sortlist = external global [5001 x i32], align 4
  5. define void @Bubble() nounwind noinline {
  6. ; CHECK: entry:
  7. ; CHECK-NEXT: %tmp7.pre = load i32
  8. entry:
  9. br label %while.body5
  10. ; CHECK: while.body5:
  11. ; CHECK: %tmp7 = phi i32
  12. ; CHECK-NOT: %tmp7 = load i32
  13. while.body5:
  14. %indvar = phi i32 [ 0, %entry ], [ %tmp6, %if.end ]
  15. %tmp5 = add i32 %indvar, 2
  16. %arrayidx9 = getelementptr [5001 x i32], [5001 x i32]* @sortlist, i32 0, i32 %tmp5
  17. %tmp6 = add i32 %indvar, 1
  18. %arrayidx = getelementptr [5001 x i32], [5001 x i32]* @sortlist, i32 0, i32 %tmp6
  19. %tmp7 = load i32, i32* %arrayidx, align 4
  20. %tmp10 = load i32, i32* %arrayidx9, align 4
  21. %cmp11 = icmp sgt i32 %tmp7, %tmp10
  22. br i1 %cmp11, label %if.then, label %if.end
  23. ; CHECK: if.then:
  24. if.then:
  25. store i32 %tmp10, i32* %arrayidx, align 4
  26. store i32 %tmp7, i32* %arrayidx9, align 4
  27. br label %if.end
  28. if.end:
  29. %exitcond = icmp eq i32 %tmp6, 100
  30. br i1 %exitcond, label %while.end.loopexit, label %while.body5
  31. while.end.loopexit:
  32. ret void
  33. }