1 2 3 4 5 6 7 8 9 10 11 12 13
; RUN: llc < %s | FileCheck %s target triple = "i386" declare void @llvm.memset.i32(i8*, i8, i32, i32) nounwind define fastcc void @t() nounwind { entry: ; CHECK: t: ; CHECK: call memset call void @llvm.memset.i32( i8* null, i8 0, i32 188, i32 1 ) nounwind unreachable }