mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 16:33:37 +01:00
d90556aed0
llvm-svn: 56939
7 lines
178 B
LLVM
7 lines
178 B
LLVM
; Test function notes
|
|
; RUN: not llvm-as %s -o /dev/null -f |& grep "Attributes noinline alwaysinline are incompatible"
|
|
define void @fn1() alwaysinline noinline {
|
|
ret void
|
|
}
|
|
|