Files
llvm-project/llvm/test/CodeGen/AMDGPU/stackguard.ll
Matt Arsenault 1d9f9ad531 CodeGen: Fix crash when no libcall is available for stackguard (#164211)
Not all the paths appear to be implemented for GlobalISel
2025-10-23 10:40:40 +09:00

15 lines
516 B
LLVM

; RUN: not llc -global-isel=0 -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -filetype=null %s 2>&1 | FileCheck %s
; RUN: not llc -global-isel -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -filetype=null %s 2>&1 | FileCheck %s
; FIXME: To actually support stackguard, need to fix intrinsic to
; return pointer in any address space.
; CHECK: error: unable to lower stackguard
define i1 @test_stackguard(ptr %p1) {
%p2 = call ptr @llvm.stackguard()
%res = icmp ne ptr %p2, %p1
ret i1 %res
}
declare ptr @llvm.stackguard()