Reverted AVX-512 vector shuffle
[oota-llvm.git] / test / CodeGen / X86 / 2008-12-01-loop-iv-used-outside-loop.ll
index ca5a80ccd82b5f817a199c3b08d11b83a3327ba3..840b8ba0f8ce89639792e4a5e944a32287661b3e 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin | not grep lea
+; RUN: llc < %s -mtriple=i386-apple-darwin | not grep lea
 ; The inner loop should use [reg] addressing, not [reg+reg] addressing.
 ; rdar://6403965
 
@@ -15,8 +15,8 @@ bb:           ; preds = %bb1, %bb1
 
 bb1:           ; preds = %bb, %entry
        %P.0.rec = phi i32 [ 0, %entry ], [ %indvar.next, %bb ]         ; <i32> [#uses=3]
-       %P.0 = getelementptr i8* %Q, i32 %P.0.rec               ; <i8*> [#uses=2]
-       %0 = load i8* %P.0, align 1             ; <i8> [#uses=1]
+       %P.0 = getelementptr i8, i8* %Q, i32 %P.0.rec           ; <i8*> [#uses=2]
+       %0 = load i8, i8* %P.0, align 1         ; <i8> [#uses=1]
        switch i8 %0, label %bb3 [
                i8 12, label %bb
                i8 42, label %bb
@@ -24,7 +24,7 @@ bb1:          ; preds = %bb, %entry
 
 bb3:           ; preds = %bb1
        %P.0.sum = add i32 %P.0.rec, 2          ; <i32> [#uses=1]
-       %1 = getelementptr i8* %Q, i32 %P.0.sum         ; <i8*> [#uses=1]
+       %1 = getelementptr i8, i8* %Q, i32 %P.0.sum             ; <i8*> [#uses=1]
        store i8 4, i8* %1, align 1
        ret i8* %P.0
 }