[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / X86 / darwin-bzero.ll
blobb2c3e7513b4466565f1a8891601647242520d4f2
1 ; RUN: llc < %s -mtriple=i386-apple-darwin10 | FileCheck -check-prefixes=CHECK,BZERO %s
2 ; RUN: llc < %s -mtriple=x86_64-apple-darwin10 | FileCheck -check-prefixes=CHECK,BZERO %s
3 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown | FileCheck -check-prefixes=CHECK,NOBZERO %s
4 ; RUN: llc < %s -mtriple=x86_64-apple-ios10.0-simulator | FileCheck -check-prefixes=CHECK,NOBZERO %s
6 declare void @llvm.memset.p0.i32(ptr nocapture, i8, i32, i1) nounwind
8 ; CHECK-LABEL: foo:
9 ; BZERO: {{calll|callq}} ___bzero
10 ; NOBZERO-NOT: bzero
11 define void @foo(ptr %p, i32 %len) {
12   call void @llvm.memset.p0.i32(ptr %p, i8 0, i32 %len, i1 false)
13   ret void