blob: e5c02f99681c215556f351c312d9ccb2f3165590 [file] [log] [blame]
; RUN: not --crash llc < %s -march=nvptx -mcpu=sm_20 2>&1 | FileCheck %s
%struct.A = type { [0 x float] }
%struct.B = type { i32, i32 }
; CHECK: ERROR: Empty parameter types are not supported
define void @kernel(%struct.A %a, %struct.B %b) {
entry:
ret void
}