This test should have been updated with llvm 1.7!
authorReid Spencer <rspencer@reidspencer.com>
Sat, 14 Apr 2007 20:21:37 +0000 (20:21 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sat, 14 Apr 2007 20:21:37 +0000 (20:21 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36014 91177308-0d34-0410-b5e6-96231b3b80d8

test/Transforms/InstCombine/memmove.ll

index 5ee9c90bb9ec9dcd64780e207dc0dcd860f1c095..52ed592b18709b5dd7804ce9d163913e5808bcc7 100644 (file)
@@ -7,17 +7,17 @@
 
 implementation
 
-declare void %llvm.memmove(sbyte*, sbyte*, uint, uint)
+declare void %llvm.memmove.i32(sbyte*, sbyte*, uint, uint)
 
 void %test1(sbyte* %A, sbyte* %B, uint %N) {
        ;; 0 bytes -> noop.
-       call void %llvm.memmove(sbyte* %A, sbyte* %B, uint 0, uint 1)
+       call void %llvm.memmove.i32(sbyte* %A, sbyte* %B, uint 0, uint 1)
        ret void
 }
 
 void %test2(sbyte *%A, uint %N) {
        ;; dest can't alias source since we can't write to source!
-       call void %llvm.memmove(sbyte* %A, sbyte* getelementptr ([33 x sbyte]* %S, int 0, int 0), 
+       call void %llvm.memmove.i32(sbyte* %A, sbyte* getelementptr ([33 x sbyte]* %S, int 0, int 0), 
                                 uint %N, uint 1)
        ret void
 }