mirror of
https://github.com/RPCSX/llvm.git
synced 2025-04-03 08:41:44 +00:00

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265081 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
600 B
LLVM
18 lines
600 B
LLVM
; RUN: llvm-dis < %s.bc | FileCheck %s
|
|
; RUN: verify-uselistorder < %s.bc
|
|
|
|
; CHECK: define void @foo() !dbg [[SP:![0-9]+]]
|
|
define void @foo() {
|
|
ret void
|
|
}
|
|
|
|
!llvm.module.flags = !{!0}
|
|
!0 = !{i32 2, !"Debug Info Version", i32 3}
|
|
|
|
!llvm.dbg.cu = !{!1}
|
|
!1 = distinct !DICompileUnit(language: DW_LANG_C99, file: !2, subprograms: !{!3}, emissionKind: FullDebug)
|
|
!2 = !DIFile(filename: "foo.c", directory: "/path/to/dir")
|
|
; CHECK: [[SP]] = distinct !DISubprogram
|
|
!3 = distinct !DISubprogram(file: !2, scope: !2, line: 51, name: "foo", function: void ()* @foo, type: !4)
|
|
!4 = !DISubroutineType(types: !{})
|