X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FX86%2F2008-12-01-loop-iv-used-outside-loop.ll;h=840b8ba0f8ce89639792e4a5e944a32287661b3e;hb=42ceb12123be2852f905696d155e96b76a3a2c6a;hp=ca5a80ccd82b5f817a199c3b08d11b83a3327ba3;hpb=ddc87d4a2c3d6df48a219a3588e6abe208bf5d14;p=oota-llvm.git diff --git a/test/CodeGen/X86/2008-12-01-loop-iv-used-outside-loop.ll b/test/CodeGen/X86/2008-12-01-loop-iv-used-outside-loop.ll index ca5a80ccd82..840b8ba0f8c 100644 --- a/test/CodeGen/X86/2008-12-01-loop-iv-used-outside-loop.ll +++ b/test/CodeGen/X86/2008-12-01-loop-iv-used-outside-loop.ll @@ -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 ] ; [#uses=3] - %P.0 = getelementptr i8* %Q, i32 %P.0.rec ; [#uses=2] - %0 = load i8* %P.0, align 1 ; [#uses=1] + %P.0 = getelementptr i8, i8* %Q, i32 %P.0.rec ; [#uses=2] + %0 = load i8, i8* %P.0, align 1 ; [#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 ; [#uses=1] - %1 = getelementptr i8* %Q, i32 %P.0.sum ; [#uses=1] + %1 = getelementptr i8, i8* %Q, i32 %P.0.sum ; [#uses=1] store i8 4, i8* %1, align 1 ret i8* %P.0 }