llvm-project/llvm/test/Assembler/2008-09-02-FunctionNotes2.ll

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
185 B
LLVM
Raw Normal View History

2008-09-03 04:58:16 +08:00
; Test function notes
; RUN: not llvm-as %s -o /dev/null 2>&1 | grep "Attributes 'noinline and alwaysinline' are incompatible"
define void @fn1() alwaysinline noinline {
2008-09-03 04:58:16 +08:00
ret void
}