mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-07 11:33:44 +00:00
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"))
|