mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-12 14:20:33 +00:00
preincrement case we miss. xfail until we catch it
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31534 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2c5d1851bb
commit
97a6e8c851
11
test/CodeGen/PowerPC/mem_update.ll
Normal file
11
test/CodeGen/PowerPC/mem_update.ll
Normal file
@ -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
|
||||
}
|
Loading…
Reference in New Issue
Block a user