mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
3e537cddb9
This mostly cosmetic patch moves the DebugEmissionKind enum from DIBuilder into DICompileUnit. DIBuilder is not the right place for this enum to live in — a metadata consumer should not have to include DIBuilder.h. I also added a Verifier check that checks that the emission kind of a DICompileUnit is actually legal. http://reviews.llvm.org/D18612 <rdar://problem/25427165> llvm-svn: 265077
9 lines
377 B
LLVM
9 lines
377 B
LLVM
; RUN: not llvm-as < %s -disable-output 2>&1 | FileCheck %s
|
|
|
|
!llvm.dbg.cu = !{!0}
|
|
; CHECK: <stdin>:[[@LINE+1]]:71: error: value for 'emissionKind' too large
|
|
!0 = distinct !DICompileUnit(language: DW_LANG_Cobol85, emissionKind: 99,
|
|
file: !DIFile(filename: "a", directory: "b"))
|
|
!llvm.module.flags = !{!1}
|
|
!1 = !{i32 2, !"Debug Info Version", i32 3}
|