Files
clang-p2996/llvm/test/tools/llvm-split/AMDGPU/indirect-call-inline-asm.ll
Pierre van Houtryve d656b20632 [AMDGPU][SplitModule] Cleanup CallsExternal Handling (#106528)
- Don't treat inline ASM as indirect calls
- Remove call to alias testing, which was broken (only working by pure
luck right now) and isn't needed anyway. GlobalOpt should take care of
them for us.
2024-10-11 08:37:20 +02:00

31 lines
817 B
LLVM

; RUN: llvm-split -o %t %s -j 2 -mtriple amdgcn-amd-amdhsa -amdgpu-module-splitting-no-externalize-address-taken
; RUN: llvm-dis -o - %t0 | FileCheck --check-prefix=CHECK0 --implicit-check-not=define %s
; RUN: llvm-dis -o - %t1 | FileCheck --check-prefix=CHECK1 --implicit-check-not=define %s
; CHECK0: define internal void @HelperB
; CHECK0: define amdgpu_kernel void @B
; CHECK1: define internal void @HelperA()
; CHECK1: define amdgpu_kernel void @A()
@addrthief = global [2 x ptr] [ptr @HelperA, ptr @HelperB]
define internal void @HelperA() {
ret void
}
define internal void @HelperB() {
ret void
}
define amdgpu_kernel void @A() {
call void asm sideeffect "v_mov_b32 v0, 7", "~{v0}"()
call void @HelperA()
ret void
}
define amdgpu_kernel void @B(ptr %out) {
call void @HelperB()
ret void
}