aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/AMDGPU/unsupported-calling-conv-call.ll
blob: 8824e8e1b3759c833568876687bab58ad571422b (plain)
1
2
3
4
5
6
7
; RUN: not llc -mtriple=amdgcn-amd-amdhsa -mcpu=gfx900 -filetype=null %s 2>&1 | FileCheck %s

; CHECK: LLVM ERROR: unsupported calling convention
define void @caller(ptr %func) {
  call aarch64_sve_vector_pcs void %func()
  ret void
}