Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / call-alias-register-usage0.ll
blob797376535cde0650503178154f5ac457851bc253
1 ; RUN: llc -O0 -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 < %s | FileCheck %s
3 ; CallGraphAnalysis, which CodeGenSCC order depends on, does not look
4 ; through aliases. If GlobalOpt is never run, we do not see direct
5 ; calls,
7 @alias0 = hidden alias void (), ptr @aliasee_default_vgpr64_sgpr102
9 ; CHECK-LABEL: {{^}}kernel0:
10 ; CHECK: .amdhsa_next_free_vgpr 53
11 ; CHECK-NEXT: .amdhsa_next_free_sgpr 36
12 define amdgpu_kernel void @kernel0() #0 {
13 bb:
14   call void @alias0() #2
15   ret void
18 define internal void @aliasee_default_vgpr64_sgpr102() #1 {
19 bb:
20   call void asm sideeffect "; clobber v52 ", "~{v52}"()
21   ret void
24 attributes #0 = { noinline norecurse nounwind optnone }
25 attributes #1 = { noinline norecurse nounwind readnone willreturn }
26 attributes #2 = { nounwind readnone willreturn }