aboutsummaryrefslogtreecommitdiffstats
path: root/test/Assembler
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-10-09 20:11:19 +0000
committerBill Wendling <isanbard@gmail.com>2012-10-09 20:11:19 +0000
commit28d1c60f89f7d224879bd84b89c3e280e6a7333b (patch)
tree89e2c546b323da539fe9a17d9b8741e32ce16ff2 /test/Assembler
parentb4e971f376f15325d6918d7fae0c28c8dad5a78c (diff)
downloadexternal_llvm-28d1c60f89f7d224879bd84b89c3e280e6a7333b.zip
external_llvm-28d1c60f89f7d224879bd84b89c3e280e6a7333b.tar.gz
external_llvm-28d1c60f89f7d224879bd84b89c3e280e6a7333b.tar.bz2
Inline the checks for mutually exclusive attributes since they're used in only one module.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@165539 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Assembler')
-rw-r--r--test/Assembler/2008-09-02-FunctionNotes2.ll2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Assembler/2008-09-02-FunctionNotes2.ll b/test/Assembler/2008-09-02-FunctionNotes2.ll
index 97351e2..47eb011 100644
--- a/test/Assembler/2008-09-02-FunctionNotes2.ll
+++ b/test/Assembler/2008-09-02-FunctionNotes2.ll
@@ -1,5 +1,5 @@
; Test function notes
-; RUN: not llvm-as %s -o /dev/null 2>&1 | grep "Attributes noinline alwaysinline are incompatible"
+; RUN: not llvm-as %s -o /dev/null 2>&1 | grep "Attributes 'noinline and alwaysinline' are incompatible"
define void @fn1() alwaysinline noinline {
ret void
}