diff options
-rw-r--r-- | test/CodeGen/PowerPC/store-load-fwd.ll | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/store-load-fwd.ll b/test/CodeGen/PowerPC/store-load-fwd.ll new file mode 100644 index 0000000000..8ebd02b79f --- /dev/null +++ b/test/CodeGen/PowerPC/store-load-fwd.ll @@ -0,0 +1,7 @@ +; 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 +} |