mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
5ef1cd8cb9
This allows the representation of arbitrarily large enumeration values. See https://lists.llvm.org/pipermail/llvm-dev/2017-December/119475.html for context. Reviewed By: andrewrk, aprantl, MaskRay Differential Revision: https://reviews.llvm.org/D62475
11 lines
400 B
LLVM
11 lines
400 B
LLVM
;; DIEnumerator-10.0.ll.bc was generated by llvm-as 10.0.0
|
|
; RUN: llvm-dis < %s.bc | FileCheck %s
|
|
; RUN: verify-uselistorder < %s.bc
|
|
|
|
!named = !{!0, !1}
|
|
|
|
; CHECK: !DIEnumerator(name: "A0", value: 9223372036854775807)
|
|
!0 = !DIEnumerator(name: "A0", value: 9223372036854775807)
|
|
; CHECK: !DIEnumerator(name: "B0", value: -9223372036854775808)
|
|
!1 = !DIEnumerator(name: "B0", value: -9223372036854775808)
|