mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:12:47 +01:00
10 lines
185 B
LLVM
10 lines
185 B
LLVM
|
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
|
||
|
|
||
|
define dso_local void @f() {
|
||
|
entry:
|
||
|
%a.addr = alloca <2 x x86_amx>, align 4
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
; CHECK: invalid vector element type
|