[InstCombine] Signed saturation patterns
[llvm-complete.git] / test / CodeGen / AMDGPU / img-nouse-adjust.ll
blob08e12ba22468f994e461789bf8dab23423362dbd
1 ; RUN: llc -march=amdgcn -mcpu=gfx900 -start-before=amdgpu-isel -stop-after=amdgpu-isel -verify-machineinstrs < %s | FileCheck %s --check-prefix=GCN
3 ; We're really just checking for no crashes
4 ; The feature we're testing for in AdjustWriteMask leaves the image_load as an instruction just post amdgpu-isel
5 ; In reality, it's hard to get an image intrinsic into AdjustWriteMask with no uses as it will usually get removed
6 ; first, but it can happen, hence the fix associated with this test
8 ; GCN-LABEL: name: _amdgpu_cs_main
9 ; GCN-LABEL: bb.0
10 ; GCN: IMAGE_LOAD_V4_V2
11 define amdgpu_cs void @_amdgpu_cs_main(i32 %dummy) local_unnamed_addr #0 {
12 .entry:
13   %unused.result = tail call <4 x float> @llvm.amdgcn.image.load.2d.v4f32.i32(i32 15, i32 undef, i32 undef, <8 x i32> undef, i32 0, i32 0) #3
14   call void asm sideeffect ";", "" () #0
15   ret void
18 ; Function Attrs: nounwind readonly
19 declare <4 x float> @llvm.amdgcn.image.load.2d.v4f32.i32(i32, i32, i32, <8 x i32>, i32, i32) #1
20   
21 attributes #0 = { nounwind }
22 attributes #1 = { nounwind readonly  }