Move a DenseMap's declaration outside of a loop, and just call
[oota-llvm.git] / test / Transforms / InstCombine / 2004-11-22-Missed-and-fold.ll
index 8702c5e343c8fb85dc40904116580f4dd0d3a331..766ba48be63f4720fbe9ebcd0b4e709494bba17a 100644 (file)
@@ -1,9 +1,10 @@
 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | not grep and
-; XFAIL: *
 
-sbyte %test21(sbyte %A) {
-        %C = shr sbyte %A, ubyte 7   ;; sign extend
-        %D = and sbyte %C, 1         ;; chop off sign
-        ret sbyte %D
+define i8 @test21(i8 %A) {
+        ;; sign extend
+        %C = ashr i8 %A, 7              ; <i8> [#uses=1]
+        ;; chop off sign
+        %D = and i8 %C, 1               ; <i8> [#uses=1]
+        ret i8 %D
 }