mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 01:13:25 +00:00
bcda285fcc
memcpy lowering code; this ensures that the size node has the desired result type. This fixes a regression from r49572 with @llvm.memcpy.i64 on x86-32. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49761 91177308-0d34-0410-b5e6-96231b3b80d8
14 lines
321 B
LLVM
14 lines
321 B
LLVM
; RUN: llvm-as < %s | llc -march=x86 | grep stosb
|
|
|
|
target triple = "i386-apple-darwin9"
|
|
%struct.S = type { [80 x i8] }
|
|
|
|
define %struct.S* @bork() {
|
|
entry:
|
|
call void @llvm.memset.i64( i8* null, i8 0, i64 80, i32 1 )
|
|
ret %struct.S* null
|
|
}
|
|
|
|
declare void @llvm.memset.i64(i8*, i8, i64, i32) nounwind
|
|
|