mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
608f5a6d48
is valid, but not useful, when variable identified by !1 is optimized away by the optimizer. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98986 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
338 B
LLVM
13 lines
338 B
LLVM
; RUN: llvm-as < %s | opt -verify -disable-output
|
|
|
|
define void @Foo(i32 %a, i32 %b) {
|
|
entry:
|
|
call void @llvm.dbg.declare(metadata !{i32* null}, metadata !1)
|
|
ret void
|
|
}
|
|
|
|
!0 = metadata !{i32 662302, i32 26, metadata !1, null}
|
|
!1 = metadata !{i32 4, metadata !"foo"}
|
|
|
|
declare void @llvm.dbg.declare(metadata, metadata) nounwind readnone
|