Re-apply r245635, "[InstCombine] Transform A & (L - 1) u< L --> L != 0"
[oota-llvm.git] / test / Transforms / InstCombine / known_align.ll
index a6e340902dfb3a2f7c878d47f5abc790c94afac1..653c4c51e2da6a32977077678616f441fa8a57a4 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | opt -instcombine | llvm-dis | grep {align 1}
+; RUN: opt < %s -instcombine -S | grep "align 1"
 ; END.
 
        %struct.p = type <{ i8, i32 }>
@@ -11,17 +11,17 @@ entry:
        %tmp = alloca i32, align 4              ; <i32*> [#uses=2]
        %tmp1 = alloca i32, align 4             ; <i32*> [#uses=3]
        %"alloca point" = bitcast i32 0 to i32          ; <i32> [#uses=0]
-       %tmp3 = load i32* getelementptr (%struct.p* @t, i32 0, i32 1), align 1          ; <i32> [#uses=1]
+       %tmp3 = load i32, i32* getelementptr (%struct.p, %struct.p* @t, i32 0, i32 1), align 1          ; <i32> [#uses=1]
        store i32 %tmp3, i32* %tmp1, align 4
-       %tmp5 = load i32* %tmp1, align 4                ; <i32> [#uses=1]
-       store i32 %tmp5, i32* getelementptr (%struct.p* @u, i32 0, i32 1), align 1
-       %tmp6 = load i32* %tmp1, align 4                ; <i32> [#uses=1]
+       %tmp5 = load i32, i32* %tmp1, align 4           ; <i32> [#uses=1]
+       store i32 %tmp5, i32* getelementptr (%struct.p, %struct.p* @u, i32 0, i32 1), align 1
+       %tmp6 = load i32, i32* %tmp1, align 4           ; <i32> [#uses=1]
        store i32 %tmp6, i32* %tmp, align 4
-       %tmp7 = load i32* %tmp, align 4         ; <i32> [#uses=1]
+       %tmp7 = load i32, i32* %tmp, align 4            ; <i32> [#uses=1]
        store i32 %tmp7, i32* %retval, align 4
        br label %return
 
 return:                ; preds = %entry
-       %retval8 = load i32* %retval            ; <i32> [#uses=1]
+       %retval8 = load i32, i32* %retval               ; <i32> [#uses=1]
        ret i32 %retval8
 }