1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-01 00:12:50 +01:00
llvm-mirror/test/Assembler/2008-09-02-FunctionNotes.ll

15 lines
209 B
LLVM
Raw Normal View History

; Test function attributes
; RUN: llvm-as < %s | llvm-dis | grep inline | count 2
2008-09-02 22:58:16 +02:00
2008-09-27 02:25:28 +02:00
define void @fn1() alwaysinline {
2008-09-02 22:58:16 +02:00
ret void
}
2008-09-27 02:25:28 +02:00
define void @fn2() noinline {
2008-09-02 22:58:16 +02:00
ret void
}
define void @fn3() {
ret void
}