2018-10-26 21:18:36 +08:00
|
|
|
; RUN: opt -data-layout=A5 -S -mtriple=amdgcn-unknown-unknown -amdgpu-promote-alloca -disable-promote-alloca-to-vector < %s | FileCheck %s
|
2017-08-04 07:24:05 +08:00
|
|
|
|
2015-07-29 02:29:14 +08:00
|
|
|
; Make sure that AMDGPUPromoteAlloca doesn't crash if the called
|
|
|
|
; function is a constantexpr cast of a function.
|
|
|
|
|
2018-02-03 00:07:16 +08:00
|
|
|
declare void @foo(float addrspace(5)*) #0
|
2015-07-29 02:29:14 +08:00
|
|
|
declare void @foo.varargs(...) #0
|
|
|
|
|
2018-10-26 21:18:36 +08:00
|
|
|
; CHECK-LABEL: @crash_call_constexpr_cast(
|
|
|
|
; CHECK: alloca
|
|
|
|
; CHECK: call void
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @crash_call_constexpr_cast() #0 {
|
2018-02-03 00:07:16 +08:00
|
|
|
%alloca = alloca i32, addrspace(5)
|
|
|
|
call void bitcast (void (float addrspace(5)*)* @foo to void (i32 addrspace(5)*)*)(i32 addrspace(5)* %alloca) #0
|
2015-07-29 02:29:14 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
2018-10-26 21:18:36 +08:00
|
|
|
; CHECK-LABEL: @crash_call_constexpr_cast_varargs(
|
|
|
|
; CHECK: alloca
|
|
|
|
; CHECK: call void
|
2017-03-22 05:39:51 +08:00
|
|
|
define amdgpu_kernel void @crash_call_constexpr_cast_varargs() #0 {
|
2018-02-03 00:07:16 +08:00
|
|
|
%alloca = alloca i32, addrspace(5)
|
|
|
|
call void bitcast (void (...)* @foo.varargs to void (i32 addrspace(5)*)*)(i32 addrspace(5)* %alloca) #0
|
2015-07-29 02:29:14 +08:00
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
attributes #0 = { nounwind }
|