[llvm-commits] CVS: llvm/test/Regression/CodeGen/Generic/2006-11-06-MemIntrinsicExpand.ll

Chris Lattner sabre at nondot.org
Mon Nov 6 20:11:36 PST 2006



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

2006-11-06-MemIntrinsicExpand.ll added (r1.1)
---
Log message:

new testcase


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

 2006-11-06-MemIntrinsicExpand.ll |   12 ++++++++++++
 1 files changed, 12 insertions(+)


Index: llvm/test/Regression/CodeGen/Generic/2006-11-06-MemIntrinsicExpand.ll
diff -c /dev/null llvm/test/Regression/CodeGen/Generic/2006-11-06-MemIntrinsicExpand.ll:1.1
*** /dev/null	Mon Nov  6 22:11:24 2006
--- llvm/test/Regression/CodeGen/Generic/2006-11-06-MemIntrinsicExpand.ll	Mon Nov  6 22:11:14 2006
***************
*** 0 ****
--- 1,12 ----
+ ; RUN: llvm-as < %s | llc -march=x86 &&
+ ; RUN: llvm-as < %s | llc -march=x86 | not grep adc
+ 
+ ; PR988
+ 
+ declare void %llvm.memcpy.i64(sbyte*, sbyte*, ulong, uint)
+ 
+ void %foo(ulong %a) {
+   %b = add ulong %a, 1
+ call void %llvm.memcpy.i64( sbyte* null, sbyte* null, ulong %b, uint 1 )
+   ret void
+ }






More information about the llvm-commits mailing list