X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FCodeGen%2FPowerPC%2Fstore-load-fwd.ll;h=25663c1ac68eceeb67ff9cab09705724d99a20df;hb=f2e4afd96c9d26ff0dd2fb5eca0a94207d2a8fb4;hp=8ebd02b79fd71a3b1566c6d372c683b620a9b697;hpb=e64dfbc10b2ea220619a7416e471184f7f8f367a;p=oota-llvm.git diff --git a/test/CodeGen/PowerPC/store-load-fwd.ll b/test/CodeGen/PowerPC/store-load-fwd.ll index 8ebd02b79fd..25663c1ac68 100644 --- a/test/CodeGen/PowerPC/store-load-fwd.ll +++ b/test/CodeGen/PowerPC/store-load-fwd.ll @@ -1,7 +1,8 @@ -; RUN: llvm-as < %s | llc -march=ppc32 && -; RUN: llvm-as < %s | llc -march=ppc32 | not grep lwz -int %test(int* %P) { - store int 1, int* %P - %V = load int* %P - ret int %V +; RUN: llc < %s -march=ppc32 | not grep lwz + +define i32 @test(i32* %P) { + store i32 1, i32* %P + %V = load i32* %P ; [#uses=1] + ret i32 %V } +