remove eh, convert to FileCheck style
authorChris Lattner <sabre@nondot.org>
Thu, 9 Jul 2009 01:07:22 +0000 (01:07 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 9 Jul 2009 01:07:22 +0000 (01:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75087 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/pic-3.ll

index bbec68209ba17ed140d991d46fc9c9e50270f56c..245cae8537cfeead60f189c8c2056247373bbcc0 100644 (file)
@@ -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