Add correct NEON encodings for the "multiple single elements" form of vld.
[oota-llvm.git] / test / Transforms / InstCombine / 2004-04-04-InstCombineReplaceAllUsesWith.ll
index b7bfb29f43450e1a2252b1ed6f7277929f67e9b1..84f9bad69d8d8513afd383a4eaf9605f34bb73b1 100644 (file)
@@ -1,8 +1,10 @@
-; RUN: llvm-as < %s | opt -instcombine -disable-output
+; RUN: opt < %s -instcombine -disable-output
 
-int %test() {
-       ret int 0
-Loop:
-       %X = add int %X, 1
-       br label %Loop
+define i32 @test() {
+        ret i32 0
+
+Loop:           ; preds = %Loop
+        %X = add i32 %X, 1              ; <i32> [#uses=1]
+        br label %Loop
 }
+