mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-02 07:30:52 +00:00
r230877 optimized which fields are written out for `CHECK`-ability, but apparently missed changing some of them to optional in `LLParser`. Fixes PR22921. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232400 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
871 B
LLVM
23 lines
871 B
LLVM
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
|
; RUN: verify-uselistorder %s
|
|
|
|
@foo = global i32 0
|
|
|
|
; CHECK: !named = !{!0, !1, !2, !3, !4, !5, !6}
|
|
!named = !{!0, !1, !2, !3, !4, !5, !6}
|
|
|
|
!0 = distinct !{}
|
|
!1 = distinct !{}
|
|
!2 = !MDFile(filename: "path/to/file", directory: "/path/to/dir")
|
|
!3 = distinct !{}
|
|
!4 = distinct !{}
|
|
|
|
; CHECK: !5 = !MDGlobalVariable(name: "foo", linkageName: "foo", scope: !0, file: !2, line: 7, type: !3, isLocal: true, isDefinition: false, variable: i32* @foo, declaration: !4)
|
|
!5 = !MDGlobalVariable(name: "foo", linkageName: "foo", scope: !0,
|
|
file: !2, line: 7, type: !3, isLocal: true,
|
|
isDefinition: false, variable: i32* @foo,
|
|
declaration: !4)
|
|
|
|
; CHECK: !6 = !MDGlobalVariable(scope: null, isLocal: false, isDefinition: true)
|
|
!6 = !MDGlobalVariable()
|