Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / visit-physreg-vgpr-imm-folding-bug.ll
blob3360019660673abdfe92105348ffc384c4488594
1 ; RUN: llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 < %s | FileCheck %s
3 ; Make sure the return value of the first call is not overwritten with
4 ; a constant before the fadd use.
6 ; CHECK-LABEL: vgpr_multi_use_imm_fold:
7 ; CHECK: v_mov_b32_e32 v0, 0{{$}}
8 ; CHECK: v_mov_b32_e32 v1, 2.0{{$}}
9 ; CHECK:    s_swappc_b64
10 ; CHECK-NEXT: v_add_f64 v[0:1], v[0:1], 0
11 ; CHECK:    s_swappc_b64
12 define amdgpu_kernel void @vgpr_multi_use_imm_fold() {
13 entry:
14   store double 0.0, ptr addrspace(1) undef, align 8
15   %call0 = tail call fastcc double @__ocml_log_f64(double 2.0)
16   %op = fadd double %call0, 0.0
17   %call1 = tail call fastcc double @__ocml_sqrt_f64(double %op)
18   ret void
21 declare hidden fastcc double @__ocml_log_f64(double)
22 declare hidden fastcc double @__ocml_sqrt_f64(double)