[llvm-commits] CVS: llvm/test/CodeGen/CBackend/2004-02-15-PreexistingExternals.llx

Reid Spencer reid at x10sys.com
Sun Apr 15 20:11:17 PDT 2007



Changes in directory llvm/test/CodeGen/CBackend:

2004-02-15-PreexistingExternals.llx updated: 1.3 -> 1.4
---
Log message:

For PR1336: http://llvm.org/PR1336 :
Upgrade the intrinsic to its new form.


---
Diffs of the changes:  (+2 -3)

 2004-02-15-PreexistingExternals.llx |    5 ++---
 1 files changed, 2 insertions(+), 3 deletions(-)


Index: llvm/test/CodeGen/CBackend/2004-02-15-PreexistingExternals.llx
diff -u llvm/test/CodeGen/CBackend/2004-02-15-PreexistingExternals.llx:1.3 llvm/test/CodeGen/CBackend/2004-02-15-PreexistingExternals.llx:1.4
--- llvm/test/CodeGen/CBackend/2004-02-15-PreexistingExternals.llx:1.3	Sun Apr 15 18:00:46 2007
+++ llvm/test/CodeGen/CBackend/2004-02-15-PreexistingExternals.llx	Sun Apr 15 22:10:56 2007
@@ -5,13 +5,12 @@
 ; everything up.  :(  Test that this does not happen anymore.
 ;
 ; RUN: llvm-upgrade < %s | llvm-as | llc -march=c | not grep _memcpy
-; XFAIL: *
 
-declare void %llvm.memcpy(sbyte*, sbyte*, uint,uint)
+declare void %llvm.memcpy.i32(sbyte*, sbyte*, uint,uint)
 declare float* %memcpy(int*, uint,int)
 
 int %test(sbyte *%A, sbyte* %B, int* %C) {
 	call float* %memcpy(int* %C, uint 4, int 17)
-	call void %llvm.memcpy(sbyte* %A, sbyte* %B, uint 123, uint 14)
+	call void %llvm.memcpy.i32(sbyte* %A, sbyte* %B, uint 123, uint 14)
 	ret int 7
 }






More information about the llvm-commits mailing list