diff options
author | Chris Lattner <sabre@nondot.org> | 2009-07-09 01:07:22 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-07-09 01:07:22 +0000 |
commit | 062e7ecd9a87b07f993eecf9358b019fb3b81404 (patch) | |
tree | 6e77ac3ee1130046a80239bb0fa176fcb0a5d798 /test | |
parent | 9ab4e664b4d12084f72deb7305929f989a102aae (diff) | |
download | external_llvm-062e7ecd9a87b07f993eecf9358b019fb3b81404.zip external_llvm-062e7ecd9a87b07f993eecf9358b019fb3b81404.tar.gz external_llvm-062e7ecd9a87b07f993eecf9358b019fb3b81404.tar.bz2 |
remove eh, convert to FileCheck style
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75087 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/CodeGen/X86/pic-3.ll | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/test/CodeGen/X86/pic-3.ll b/test/CodeGen/X86/pic-3.ll index bbec682..245cae8 100644 --- a/test/CodeGen/X86/pic-3.ll +++ b/test/CodeGen/X86/pic-3.ll @@ -1,10 +1,13 @@ -; RUN: llvm-as < %s | llc -mtriple=i686-pc-linux-gnu -relocation-model=pic \ -; RUN: -o %t -f -; RUN: grep _GLOBAL_OFFSET_TABLE_ %t -; RUN: grep piclabel %t | count 3 -; RUN: grep PLT %t | count 1 +; RUN: llvm-as < %s | llc -mtriple=i686-pc-linux-gnu -relocation-model=pic | FileCheck %s -define void @bar() { +; CHECK: bar: +; CHECK: call .Lllvm$1.$piclabel +; CHECK: popl %ebx +; CHECK: addl $_GLOBAL_OFFSET_TABLE_ + [.-.Lllvm$1.$piclabel], %ebx +; CHECK: call foo@PLT + + +define void @bar() nounwind { entry: call void(...)* @foo() br label %return |