Allow copies between GR8_ABCD_L and GR8_ABCD_H.
[oota-llvm.git] / test / CodeGen / PowerPC / store-load-fwd.ll
index 761fb5a318d3260b819fb1683aed637e3ea1904e..25663c1ac68eceeb67ff9cab09705724d99a20df 100644 (file)
@@ -1,6 +1,8 @@
-; RUN: llvm-upgrade < %s | llvm-as | 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               ; <i32> [#uses=1]
+        ret i32 %V
 }
+