Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lld / test / ELF / lto / amdgcn-oses.ll
bloba2f25cdd57d87b56c383e7267ff4a540c732894f
1 ; REQUIRES: amdgpu
3 ; RUN: split-file %s %t
5 ; RUN: llvm-as %t/amdhsa.ll -o %t/amdhsa.o
6 ; RUN: ld.lld %t/amdhsa.o -o %t/amdhsa.so
7 ; RUN: llvm-readobj --file-headers %t/amdhsa.so | FileCheck %s --check-prefixes=GCN,AMDHSA
9 ; RUN: llvm-as %t/amdpal.ll -o %t/amdpal.o
10 ; RUN: ld.lld %t/amdpal.o -o %t/amdpal.so
11 ; RUN: llvm-readobj --file-headers %t/amdpal.so | FileCheck %s --check-prefixes=GCN,NON-AMDHSA,AMDPAL
13 ; RUN: llvm-as %t/mesa3d.ll -o %t/mesa3d.o
14 ; RUN: ld.lld %t/mesa3d.o -o %t/mesa3d.so
15 ; RUN: llvm-readobj --file-headers %t/mesa3d.so | FileCheck %s --check-prefixes=GCN,NON-AMDHSA,MESA3D
17 ; AMDHSA: OS/ABI: AMDGPU_HSA (0x40)
18 ; AMDHSA: ABIVersion: 2
20 ; AMDPAL: OS/ABI: AMDGPU_PAL (0x41)
21 ; MESA3D: OS/ABI: AMDGPU_MESA3D (0x42)
22 ; NON-AMDHSA: ABIVersion: 0
24 ; GCN: Machine: EM_AMDGPU
26 ;--- amdhsa.ll
27 target triple = "amdgcn-amd-amdhsa"
28 target datalayout = "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5"
30 define void @_start() {
31   ret void
34 ;--- amdpal.ll
35 target triple = "amdgcn-amd-amdpal"
36 target datalayout = "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5"
38 define amdgpu_cs void @_start() {
39   ret void
42 ;--- mesa3d.ll
43 target triple = "amdgcn-amd-mesa3d"
44 target datalayout = "e-p:64:64-p1:64:64-p2:32:32-p3:32:32-p4:64:64-p5:32:32-p6:32:32-i64:64-v16:16-v24:32-v32:32-v48:64-v96:128-v192:256-v256:256-v512:512-v1024:1024-v2048:2048-n32:64-S32-A5"
46 define void @_start() {
47   ret void