diff options
| author | Chris Lattner <sabre@nondot.org> | 2006-11-08 01:44:35 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2006-11-08 01:44:35 +0000 |
| commit | 543572716be4bc5a53c7bb2fce019edfc69de48d (patch) | |
| tree | ae5401430330c3a2fd2896a7dd351f4c75981410 | |
| parent | d65e9e9fd8c2ba5e25086931ddea2195d4f143ef (diff) | |
| download | bcm5719-llvm-543572716be4bc5a53c7bb2fce019edfc69de48d.tar.gz bcm5719-llvm-543572716be4bc5a53c7bb2fce019edfc69de48d.zip | |
preincrement case we miss. xfail until we catch it
llvm-svn: 31534
| -rw-r--r-- | llvm/test/Regression/CodeGen/PowerPC/mem_update.ll | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm/test/Regression/CodeGen/PowerPC/mem_update.ll b/llvm/test/Regression/CodeGen/PowerPC/mem_update.ll new file mode 100644 index 00000000000..5e665f8b9a6 --- /dev/null +++ b/llvm/test/Regression/CodeGen/PowerPC/mem_update.ll @@ -0,0 +1,11 @@ +; RUN: llvm-as < %s | llc -march=ppc32 && +; RUN: llvm-as < %s | llc -march=ppc32 | not grep addi + +; XFAIL: * + +int *%test(int *%X, int *%dest) { + %Y = getelementptr int* %X, int 4 + %A = load int* %Y + store int %A, int* %dest + ret int* %Y +} |

