blob: 7d508e424051114e073734fb8322e8f56da13e30 [file] [log] [blame]
Dan Gohmanfce288f2009-09-09 00:09:15 +00001; RUN: llc < %s -march=c
Chris Lattnerba146922007-02-06 06:07:34 +00002; PR1181
3target datalayout = "e-p:64:64"
4target triple = "x86_64-apple-darwin8"
5
Chris Lattnerba146922007-02-06 06:07:34 +00006
7declare void @llvm.memset.i64(i8*, i8, i64, i32)
8
9define fastcc void @InitUser_data_unregistered() {
10entry:
11 tail call void @llvm.memset.i64( i8* null, i8 0, i64 65496, i32 1 )
12 ret void
13}