mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-17 03:30:28 +00:00
17 lines
575 B
LLVM
17 lines
575 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 = !{!"path/to/file", !"/path/to/dir"}
|
||
|
!2 = !MDFile(filename: "path/to/file", directory: "/path/to/dir")
|
||
|
|
||
|
; CHECK: !3 = !MDNamespace(scope: !0, file: !2, name: "Namespace", line: 7)
|
||
|
!3 = !MDNamespace(scope: !0, file: !2, name: "Namespace", line: 7)
|
||
|
|
||
|
; CHECK: !4 = !MDNamespace(scope: !0)
|
||
|
!4 = !MDNamespace(scope: !0, file: null, name: "", line: 0)
|
||
|
!5 = !MDNamespace(scope: !0)
|