Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / MC / AsmParser / function_hot_attr.ll
blob1bfda26d8fa8ae8a30b039a430740b038d276765
1 ; Test hot function attribute
2 ; RUN: llc < %s | FileCheck %s
3 target triple = "x86_64-unknown-linux-gnu"
5 ; Function Attrs: hot noinline norecurse nounwind readnone uwtable
6 define dso_local i32 @hot4() #0 {
7 entry:
8   ret i32 1
10 ; CHECK: .section        .text.hot.,"ax",@progbits
11 ; CHECK: .globl  hot4
13 attributes #0 = { hot noinline norecurse nounwind readnone uwtable }