blob: 5cc478448ff78faad1b7b3dbdddd5169c9b53d03 [file] [log] [blame]
Tanya Lattner5ebaf3b2008-02-19 08:07:33 +00001; RUN: llvm-as < %s | llc -march=ppc32 | not grep lwz
2
3define i32 @test(i32* %P) {
4 store i32 1, i32* %P
5 %V = load i32* %P ; <i32> [#uses=1]
6 ret i32 %V
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007}
Tanya Lattner5ebaf3b2008-02-19 08:07:33 +00008