Convert all tests using TCL-style quoting to use shell-style quoting.
[oota-llvm.git] / test / Transforms / InstCombine / zeroext-and-reduce.ll
index a863d55d4c5068421255965c92e805e6781bee8e..315033dd88827145e23f58337434488959b46dbc 100644 (file)
@@ -1,9 +1,10 @@
-; RUN: llvm-upgrade < %s | llvm-as | opt -instcombine | llvm-dis | \
-; RUN:   grep 'and i32 %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
 }
 
+