mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-19 01:48:34 +00:00
37742c3591
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@229013 91177308-0d34-0410-b5e6-96231b3b80d8
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"))
|