diff options
author | Bill Wendling <isanbard@gmail.com> | 2013-02-11 08:34:57 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2013-02-11 08:34:57 +0000 |
commit | 595ef3e314e4c40b1f8b6b4f90b418a30a637242 (patch) | |
tree | 628e3436e0d25a4f7f8239713e8cd5fe6acece00 /test/Assembler/2008-09-02-FunctionNotes.ll | |
parent | ab39afa9d9b99c61842c8e3d0eb706bd16efdcf3 (diff) |
FileCheck-ize the tests.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@174865 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler/2008-09-02-FunctionNotes.ll')
-rw-r--r-- | test/Assembler/2008-09-02-FunctionNotes.ll | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/Assembler/2008-09-02-FunctionNotes.ll b/test/Assembler/2008-09-02-FunctionNotes.ll index 761c91e864..6971138aeb 100644 --- a/test/Assembler/2008-09-02-FunctionNotes.ll +++ b/test/Assembler/2008-09-02-FunctionNotes.ll @@ -1,14 +1,18 @@ ; Test function attributes -; RUN: llvm-as < %s | llvm-dis | grep inline | count 2 +; RUN: llvm-as < %s | llvm-dis | FileCheck %s +; CHECK: define void @fn1() alwaysinline define void @fn1() alwaysinline { ret void } +; CHECK: define void @fn2() noinline define void @fn2() noinline { ret void } +; CHECK: define void @fn3() +; CHECK-NOT: define void @fn3(){{.*}}inline define void @fn3() { ret void } |