mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-07 12:07:17 +00:00
c462db6d66
This reverts commit r179840 with a fix to test/DebugInfo/two-cus-from-same-file.ll I'm not sure why that test only failed on ARM & MIPS and not X86 Linux, even though the debug info was clearly invalid on all of them, but this ought to fix it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179996 91177308-0d34-0410-b5e6-96231b3b80d8
18 lines
802 B
LLVM
18 lines
802 B
LLVM
; RUN: llvm-as < %s | opt -verify -S -asm-verbose | FileCheck %s
|
|
|
|
; CHECK: lang 0x8001
|
|
|
|
define void @Foo(i32 %a, i32 %b) {
|
|
entry:
|
|
call void @llvm.dbg.declare(metadata !{i32* null}, metadata !1)
|
|
ret void
|
|
}
|
|
!llvm.dbg.cu = !{!2}
|
|
!2 = metadata !{i32 786449, metadata !4, i32 32769, metadata !"clang version 3.3 ", i1 false, metadata !"", i32 0, metadata !3, metadata !3, metadata !3, metadata !3, metadata !3, metadata !""} ; [ DW_TAG_compile_unit ] [/usr/local/google/home/blaikie/dev/scratch/scratch.cpp] [lang 0x8001]
|
|
!3 = metadata !{}
|
|
!0 = metadata !{i32 662302, i32 26, metadata !1, null}
|
|
!1 = metadata !{i32 4, metadata !"foo"}
|
|
!4 = metadata !{metadata !"scratch.cpp", metadata !"/usr/local/google/home/blaikie/dev/scratch"}
|
|
|
|
declare void @llvm.dbg.declare(metadata, metadata) nounwind readnone
|