Mercurial > hg > CbC > CbC_llvm
diff test/Transforms/AddDiscriminators/dbg-declare-discriminator.ll @ 100:7d135dc70f03 LLVM 3.9
LLVM 3.9
author | Miyagi Mitsuki <e135756@ie.u-ryukyu.ac.jp> |
---|---|
date | Tue, 26 Jan 2016 22:53:40 +0900 |
parents | |
children | 1172e4bd9c6f |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/Transforms/AddDiscriminators/dbg-declare-discriminator.ll Tue Jan 26 22:53:40 2016 +0900 @@ -0,0 +1,30 @@ +; RUN: opt -S -add-discriminators < %s | FileCheck %s + +declare void @llvm.dbg.declare(metadata, metadata, metadata) + +; This checks whether the add-discriminators pass producess valid metadata on +; llvm.dbg.declare instructions +; +; CHECK-LABEL: @test_valid_metadata +define void @test_valid_metadata() { + %a = alloca i8 + call void @llvm.dbg.declare(metadata i8* %a, metadata !2, metadata !5), !dbg !6 + %b = alloca i8 + call void @llvm.dbg.declare(metadata i8* %b, metadata !9, metadata !5), !dbg !11 + ret void +} + +!llvm.module.flags = !{!0, !1} + +!0 = !{i32 2, !"Dwarf Version", i32 4} +!1 = !{i32 2, !"Debug Info Version", i32 3} +!2 = !DILocalVariable(scope: !3) +!3 = distinct !DISubprogram(scope: null, file: !4, isLocal: false, isDefinition: true, isOptimized: false) +!4 = !DIFile(filename: "a.cpp", directory: "/tmp") +!5 = !DIExpression() +!6 = !DILocation(line: 0, scope: !3, inlinedAt: !7) +!7 = distinct !DILocation(line: 0, scope: !8) +!8 = distinct !DISubprogram(linkageName: "test_valid_metadata", scope: null, isLocal: false, isDefinition: true, isOptimized: false) +!9 = !DILocalVariable(scope: !10) +!10 = distinct !DISubprogram(scope: null, file: !4, isLocal: false, isDefinition: true, isOptimized: false) +!11 = !DILocation(line: 0, scope: !10)