[llvm-commits] CVS: llvm/test/Regression/CodeGen/PowerPC/mem_update.ll

Chris Lattner sabre at nondot.org
Tue Nov 7 17:44:49 PST 2006



Changes in directory llvm/test/Regression/CodeGen/PowerPC:

mem_update.ll added (r1.1)
---
Log message:

preincrement case we miss.  xfail until we catch it


---
Diffs of the changes:  (+11 -0)

 mem_update.ll |   11 +++++++++++
 1 files changed, 11 insertions(+)


Index: llvm/test/Regression/CodeGen/PowerPC/mem_update.ll
diff -c /dev/null llvm/test/Regression/CodeGen/PowerPC/mem_update.ll:1.1
*** /dev/null	Tue Nov  7 19:44:45 2006
--- llvm/test/Regression/CodeGen/PowerPC/mem_update.ll	Tue Nov  7 19:44:35 2006
***************
*** 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
+ }






More information about the llvm-commits mailing list