Revert "Change memcpy/memset/memmove to have dest and source alignments."
[oota-llvm.git] / test / CodeGen / X86 / darwin-bzero.ll
1 ; RUN: llc < %s -mtriple=i386-apple-darwin10 | grep __bzero
2
3 declare void @llvm.memset.p0i8.i32(i8* nocapture, i8, i32, i32, i1) nounwind
4
5 define void @foo(i8* %p, i32 %len) {
6   call void @llvm.memset.p0i8.i32(i8* %p, i8 0, i32 %len, i32 1, i1 false)
7   ret void
8 }