[InstCombine][CodeGenPrep] Create llvm.uadd.with.overflow in CGP.
[oota-llvm.git] / test / Transforms / InstCombine / 2004-09-20-BadLoadCombine.ll
index 498da27acf659dfdf685cfe886301bb3ab673be5..10122e48ab6645d2565c5f072b49f3f850811a25 100644 (file)
@@ -1,5 +1,5 @@
-; RUN: opt %s -instcombine -mem2reg | llvm-dis | \
-; RUN:   not grep {i32 1}
+; RUN: opt < %s -instcombine -mem2reg -S | \
+; RUN:   not grep "i32 1"
 
 ; When propagating the load through the select, make sure that the load is
 ; inserted where the original load was, not where the select is.  Not doing
@@ -12,7 +12,7 @@ define i32 @test(i1 %C) {
         store i32 2, i32* %X2
         %Y = select i1 %C, i32* %X, i32* %X2            ; <i32*> [#uses=1]
         store i32 3, i32* %X
-        %Z = load i32* %Y               ; <i32> [#uses=1]
+        %Z = load i32, i32* %Y               ; <i32> [#uses=1]
         ret i32 %Z
 }