summaryrefslogtreecommitdiff
path: root/test/CodeGen/X86/private.ll
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2013-07-13 17:30:25 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2013-07-13 17:30:25 +0000
commit61a0bac2bef8c093fc6e960971cde7d580efbaf8 (patch)
treeecf1dcc37d978ee196dd4a09b22471765ccb54fc /test/CodeGen/X86/private.ll
parentb666fd553d7729da0d26a63331b262fa6a680718 (diff)
downloadllvm-61a0bac2bef8c093fc6e960971cde7d580efbaf8.tar.gz
llvm-61a0bac2bef8c093fc6e960971cde7d580efbaf8.tar.bz2
llvm-61a0bac2bef8c093fc6e960971cde7d580efbaf8.tar.xz
Convert a couple of grep tests to FileCheck.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186250 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/X86/private.ll')
-rw-r--r--test/CodeGen/X86/private.ll16
1 files changed, 10 insertions, 6 deletions
diff --git a/test/CodeGen/X86/private.ll b/test/CodeGen/X86/private.ll
index 484afc9b5a..557bbd2816 100644
--- a/test/CodeGen/X86/private.ll
+++ b/test/CodeGen/X86/private.ll
@@ -1,18 +1,22 @@
; Test to make sure that the 'private' is used correctly.
;
-; RUN: llc < %s -mtriple=x86_64-pc-linux | grep .Lfoo:
-; RUN: llc < %s -mtriple=x86_64-pc-linux | grep call.*\.Lfoo
-; RUN: llc < %s -mtriple=x86_64-pc-linux | grep .Lbaz:
-; RUN: llc < %s -mtriple=x86_64-pc-linux | grep movl.*\.Lbaz
+; RUN: llc < %s -mtriple=x86_64-pc-linux | FileCheck %s
define private void @foo() {
ret void
-}
-@baz = private global i32 4
+; CHECK: .Lfoo:
+}
define i32 @bar() {
call void @foo()
%1 = load i32* @baz, align 4
ret i32 %1
+
+; CHECK: bar:
+; CHECK: callq .Lfoo
+; CHECK: movl .Lbaz(%rip)
}
+
+@baz = private global i32 4
+; CHECK: .Lbaz: