1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/Assembler/2008-09-02-FunctionNotes.ll
2008-09-29 20:49:50 +00:00

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
}