blob: c292140e108defb41525cd86e37a523cd93b6e60 [file] [log] [blame]
Dan Gohman68d599d2008-04-01 20:38:36 +00001; RUN: llvm-as < %s | llc -mtriple=i386-apple-darwin10 | grep __bzero
2
3declare void @llvm.memset.i32(i8*, i8, i32, i32)
4
5define void @foo(i8* %p, i32 %len) {
6 call void @llvm.memset.i32(i8* %p, i8 0, i32 %len, i32 1);
7 ret void
8}