Revert rGe6ccb57bb3f6b761f2310e97fd6ca99eff42f73e "[SLP] Add cost model for `llvm...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / mmo-target-flags-folding.ll
blob3746810ac942e72817a13a879411c0440a5daaf5
1 ; RUN: llc -march=amdgcn -mcpu=gfx900 < %s | FileCheck --check-prefix=GCN %s
3 ; This is used to crash due to mismatch of MMO target flags when folding
4 ; a LOAD SDNodes with different flags.
6 ; GCN-LABEL: {{^}}test_load_folding_mmo_flags:
7 ; GCN: global_load_dwordx2
8 define amdgpu_kernel void @test_load_folding_mmo_flags(<2 x float> addrspace(1)* %arg) {
9 entry:
10   %id = tail call i32 @llvm.amdgcn.workitem.id.x()
11   %arrayidx = getelementptr inbounds <2 x float>, <2 x float> addrspace(1)* %arg, i32 %id
12   %i1 = bitcast <2 x float> addrspace(1)* %arrayidx to i64 addrspace(1)*
13   %i2 = getelementptr <2 x float>, <2 x float> addrspace(1)* %arrayidx, i64 0, i32 0
14   %i3 = load float, float addrspace(1)* %i2, align 4
15   %idx = getelementptr inbounds <2 x float>, <2 x float> addrspace(1)* %arrayidx, i64 0, i32 1
16   %i4 = load float, float addrspace(1)* %idx, align 4
17   %i5 = load i64, i64 addrspace(1)* %i1, align 4, !amdgpu.noclobber !0
18   store i64 %i5, i64 addrspace(1)* undef, align 4
19   %mul = fmul float %i3, %i4
20   store float %mul, float addrspace(1)* undef, align 4
21   unreachable
24 declare i32 @llvm.amdgcn.workitem.id.x()
26 !0 = !{}