Add missing newlines at EOF (for clang++).
[oota-llvm.git] / test / Transforms / InstCombine / zeroext-and-reduce.ll
index 6c794a3e3f2848aca96011028171d1203647f4a9..592b8a172f8e1fcb93a16f3d6716f99744e77f0f 100644 (file)
@@ -1,8 +1,10 @@
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep 'and int %Y, 8'
+; RUN: opt < %s -instcombine -S | \
+; RUN:   grep {and i32 %Y, 8}
 
-int %test1(ubyte %X) {
-        %Y = cast ubyte %X to int
-        %Z = and int %Y, 65544     ;; Prune this to and Y, 8
-        ret int %Z
+define i32 @test1(i8 %X) {
+        %Y = zext i8 %X to i32          ; <i32> [#uses=1]
+        %Z = and i32 %Y, 65544          ; <i32> [#uses=1]
+        ret i32 %Z
 }
 
+