1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-01 15:33:33 +00:00
llvm-6502/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
}