IR: de-duplicate two CmpInst routines (NFC) (#116866)
[llvm-project.git] / llvm / test / Assembler / 2008-09-02-FunctionNotes.ll
blob7cc23d3821bbfb68f8260c23c8f68c88afa5e282
1 ; Test function attributes
2 ; RUN: llvm-as < %s | llvm-dis | FileCheck %s
3 ; RUN: verify-uselistorder %s
5 ; CHECK: define void @fn1() #0 {
6 define void @fn1() alwaysinline {
7   ret void
10 ; CHECK: define void @fn2() #1 {
11 define void @fn2() noinline {
12   ret void
15 ; CHECK: define void @fn3() {
16 define void @fn3() {
17   ret void
20 ; CHECK: attributes #0 = { alwaysinline }
21 ; CHECK: attributes #1 = { noinline }