mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 11:13:28 +01:00
21bc2cacec
llvm-svn: 229013
10 lines
374 B
LLVM
10 lines
374 B
LLVM
; RUN: not llvm-as < %s -disable-output 2>&1 | FileCheck %s
|
|
|
|
; CHECK-NOT: error
|
|
!0 = !MDCompileUnit(language: 65535,
|
|
file: !MDFile(filename: "a", directory: "b"))
|
|
|
|
; CHECK: <stdin>:[[@LINE+1]]:31: error: value for 'language' too large, limit is 65535
|
|
!1 = !MDCompileUnit(language: 65536,
|
|
file: !MDFile(filename: "a", directory: "b"))
|