[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / AMDGPU / codegen-prepare-addrmode-sext.ll
blob31e1ace2bb11c481447277b2d7688bd1f007ece8
1 ; RUN: opt -mtriple=amdgcn-- -codegenprepare -S < %s | FileCheck -check-prefix=OPT %s
2 ; RUN: llc -march=amdgcn -mcpu=verde -verify-machineinstrs < %s | FileCheck -check-prefix=SI-LLC %s
4 ; OPT-LABEL: @test(
5 ; OPT: mul nsw i32
6 ; OPT-NEXT: sext
8 ; SI-LLC-LABEL: {{^}}test:
9 ; SI-LLC: s_mul_i32
10 ; SI-LLC-NOT: mul
11 define amdgpu_kernel void @test(ptr addrspace(1) nocapture readonly %in, i32 %a, i8 %b) {
12 entry:
13   %0 = mul nsw i32 %a, 3
14   %1 = sext i32 %0 to i64
15   %2 = getelementptr i8, ptr addrspace(1) %in, i64 %1
16   store i8 %b, ptr addrspace(1) %2
17   ret void