aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/darwin-bzero.ll
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGen/X86/darwin-bzero.ll')
-rw-r--r--test/CodeGen/X86/darwin-bzero.ll5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/CodeGen/X86/darwin-bzero.ll b/test/CodeGen/X86/darwin-bzero.ll
index 3099526028ab..410d67ff0ec1 100644
--- a/test/CodeGen/X86/darwin-bzero.ll
+++ b/test/CodeGen/X86/darwin-bzero.ll
@@ -1,7 +1,10 @@
-; RUN: llc < %s -mtriple=i386-apple-darwin10 | grep __bzero
+; RUN: llc < %s -mtriple=i386-apple-darwin10 | FileCheck %s
+; RUN: llc < %s -mtriple=x86_64-apple-darwin10 | FileCheck %s
declare void @llvm.memset.p0i8.i32(i8* nocapture, i8, i32, i32, i1) nounwind
+; CHECK-LABEL: foo:
+; CHECK: {{calll|callq}} ___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