2018-09-08 02:21:55 +02:00
|
|
|
; RUN: llvm-as -disable-output <%s 2>&1| FileCheck %s
|
|
|
|
|
2019-09-19 00:38:56 +02:00
|
|
|
; CHECK: DIBlockByRefStruct on DICompositeType is no longer supported
|
2018-09-08 02:21:55 +02:00
|
|
|
; CHECK: warning: ignoring invalid debug info
|
|
|
|
|
|
|
|
define void @foo() {
|
|
|
|
entry:
|
|
|
|
%s = alloca i32
|
|
|
|
call void @llvm.dbg.declare(metadata i32* %s, metadata !2, metadata !DIExpression()), !dbg !DILocation(scope: !1)
|
|
|
|
ret void
|
|
|
|
}
|
|
|
|
|
|
|
|
declare void @llvm.dbg.declare(metadata, metadata, metadata)
|
|
|
|
|
|
|
|
!llvm.module.flags = !{!0}
|
|
|
|
!0 = !{i32 2, !"Debug Info Version", i32 3}
|
|
|
|
!1 = distinct !DISubprogram()
|
|
|
|
!2 = !DILocalVariable(scope: !1, type: !3)
|
2019-09-19 00:38:56 +02:00
|
|
|
!3 = !DICompositeType(tag: DW_TAG_structure_type, flags: DIFlagReservedBit4)
|