
Test updates were performed using: https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34 These are only the test updates where the test passed without further modification (which is almost all of them, as the backend is largely pointer-type agnostic).
15 lines
635 B
LLVM
15 lines
635 B
LLVM
; RUN: llc < %s -mtriple=i386-apple-darwin10 | FileCheck -check-prefixes=CHECK,BZERO %s
|
|
; RUN: llc < %s -mtriple=x86_64-apple-darwin10 | FileCheck -check-prefixes=CHECK,BZERO %s
|
|
; RUN: llc < %s -mtriple=x86_64-unknown-unknown | FileCheck -check-prefixes=CHECK,NOBZERO %s
|
|
; RUN: llc < %s -mtriple=x86_64-apple-ios10.0-simulator | FileCheck -check-prefixes=CHECK,NOBZERO %s
|
|
|
|
declare void @llvm.memset.p0.i32(ptr nocapture, i8, i32, i1) nounwind
|
|
|
|
; CHECK-LABEL: foo:
|
|
; BZERO: {{calll|callq}} ___bzero
|
|
; NOBZERO-NOT: bzero
|
|
define void @foo(ptr %p, i32 %len) {
|
|
call void @llvm.memset.p0.i32(ptr %p, i8 0, i32 %len, i1 false)
|
|
ret void
|
|
}
|