mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
12 lines
212 B
LLVM
12 lines
212 B
LLVM
|
; RUN: not llvm-as < %s 2>&1 | FileCheck %s
|
||
|
|
||
|
target datalayout = "A1"
|
||
|
|
||
|
; CHECK: :8:3: error: expected metadata after comma
|
||
|
define void @use_alloca() {
|
||
|
%alloca = alloca i32, addrspace(1),
|
||
|
ret void
|
||
|
}
|
||
|
|
||
|
!0 = !{}
|