llvm-6502/test/CodeGen/CBackend/2007-02-05-memset.ll
Chris Lattner ba1469278e testcase for pr1181
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33956 91177308-0d34-0410-b5e6-96231b3b80d8
2007-02-06 06:07:34 +00:00

15 lines
350 B
LLVM

; RUN: llvm-as < %s | llc -march=c
; PR1181
target datalayout = "e-p:64:64"
target triple = "x86_64-apple-darwin8"
implementation ; Functions:
declare void @llvm.memset.i64(i8*, i8, i64, i32)
define fastcc void @InitUser_data_unregistered() {
entry:
tail call void @llvm.memset.i64( i8* null, i8 0, i64 65496, i32 1 )
ret void
}