mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
9 lines
310 B
LLVM
9 lines
310 B
LLVM
|
; RUN: not opt -S -verify < %s 2>&1 | FileCheck %s
|
||
|
|
||
|
;; Arrays cannot contain scalable vectors; make sure we detect them even
|
||
|
;; when nested inside other aggregates.
|
||
|
|
||
|
%ty = type { i64, [4 x <vscale x 256 x i1>] }
|
||
|
; CHECK: error: invalid array element type
|
||
|
; CHECK: %ty = type { i64, [4 x <vscale x 256 x i1>] }
|