add a regression for memmove

llvm-svn: 31430
This commit is contained in:
Andrew Lenharth 2006-11-03 22:45:09 +00:00
parent 2048373e71
commit 95a1c854d3
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
;RUN: llvm-as < %s | opt -instcombine | llvm-dis |not grep memmove.i32
; Instcombine was trying to turn this into a memmove.i32
target datalayout = "e-p:64:64"
target endian = little
target pointersize = 64
target triple = "alphaev67-unknown-linux-gnu"
%str10 = internal constant [1 x sbyte] zeroinitializer ; <[1 x sbyte]*> [#uses=1]
implementation ; Functions:
void %do_join(sbyte* %b) {
entry:
call void %llvm.memmove.i64( sbyte* %b, sbyte* getelementptr ([1 x sbyte]* %str10, int 0, ulong 0), ulong 1, uint 1 )
ret void
}
declare void %llvm.memmove.i64(sbyte*, sbyte*, ulong, uint)