mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
88a7961c64
Also add a check for llvm.used in the verifier and simplify clients now that they can assume they have a ConstantArray. llvm-svn: 180019
8 lines
218 B
LLVM
8 lines
218 B
LLVM
; RUN: not llvm-as < %s -o /dev/null 2>&1 | FileCheck %s
|
|
|
|
@a = global i8 42
|
|
@llvm.used = appending global [2 x i8*] [i8* @a, i8* null], section "llvm.metadata"
|
|
|
|
; CHECK: invalid llvm.used member
|
|
; CHECK-NEXT: i8* null
|