mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
7536edca09
llvm-svn: 56801
15 lines
209 B
LLVM
15 lines
209 B
LLVM
; Test function attributes
|
|
; RUN: llvm-as < %s | llvm-dis | grep inline | count 2
|
|
|
|
define void @fn1() alwaysinline {
|
|
ret void
|
|
}
|
|
|
|
define void @fn2() noinline {
|
|
ret void
|
|
}
|
|
|
|
define void @fn3() {
|
|
ret void
|
|
}
|