64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
7 lines
185 B
LLVM
7 lines
185 B
LLVM
; 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 {
|
|
ret void
|
|
}
|
|
|