mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
3c0d9fa2d4
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
21 lines
757 B
LLVM
21 lines
757 B
LLVM
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis | FileCheck %s
|
|
; RUN: verify-uselistorder %s
|
|
|
|
; CHECK: !named = !{!0, !1, !2, !3, !4, !4}
|
|
!named = !{!0, !1, !2, !3, !4, !5}
|
|
|
|
!0 = distinct !{}
|
|
!1 = !MDFile(filename: "path/to/file", directory: "/path/to/dir")
|
|
!2 = distinct !{}
|
|
|
|
|
|
; CHECK: !2 = distinct !{}
|
|
; CHECK-NEXT: !3 = !MDObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo", getter: "getFoo", attributes: 7, type: !2)
|
|
!3 = !MDObjCProperty(name: "foo", file: !1, line: 7, setter: "setFoo",
|
|
getter: "getFoo", attributes: 7, type: !2)
|
|
|
|
; CHECK-NEXT: !4 = !MDObjCProperty()
|
|
!4 = !MDObjCProperty(name: "", file: null, line: 0, setter: "", getter: "",
|
|
attributes: 0, type: null)
|
|
!5 = !MDObjCProperty()
|