hanchenye-llvm-project/llvm/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-03 04:58:16 +08:00
2008-09-27 08:25:28 +08:00
define void @fn1() alwaysinline {
2008-09-03 04:58:16 +08:00
ret void
}
2008-09-27 08:25:28 +08:00
define void @fn2() noinline {
2008-09-03 04:58:16 +08:00
ret void
}
define void @fn3() {
ret void
}