You've already forked linux-packaging-mono
Imported Upstream version 6.0.0.172
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
parent
8016999e4d
commit
64ac736ec5
14
external/llvm/test/CodeGen/X86/darwin-bzero.ll
vendored
Normal file
14
external/llvm/test/CodeGen/X86/darwin-bzero.ll
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
; 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.p0i8.i32(i8* nocapture, i8, i32, i32, i1) nounwind
|
||||
|
||||
; CHECK-LABEL: foo:
|
||||
; BZERO: {{calll|callq}} ___bzero
|
||||
; NOBZERO-NOT: bzero
|
||||
define void @foo(i8* %p, i32 %len) {
|
||||
call void @llvm.memset.p0i8.i32(i8* %p, i8 0, i32 %len, i32 1, i1 false)
|
||||
ret void
|
||||
}
|
Reference in New Issue
Block a user