Before setting scope end marker, pay attention to scope begin marker and existing...
[oota-llvm.git] / test / DebugInfo / deaddebuglabel.ll
1 ; RUN: llc %s -o - -O0 | grep "label" | count 8
2 ; PR2614
3 ; XFAIL: *
4
5 target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-f80:32:32-v64:64:64-v128:128:128-a0:0:64"
6 target triple = "i686-pc-linux-gnu"
7         %llvm.dbg.anchor.type = type { i32, i32 }
8         %llvm.dbg.basictype.type = type { i32, {  }*, i8*, {  }*, i32, i64, i64, i64, i32, i32 }
9         %llvm.dbg.compile_unit.type = type { i32, {  }*, i32, i8*, i8*, i8* }
10         %llvm.dbg.compositetype.type = type { i32, {  }*, i8*, {  }*, i32, i64, i64, i64, i32, {  }*, {  }* }
11         %llvm.dbg.derivedtype.type = type { i32, {  }*, i8*, {  }*, i32, i64, i64, i64, i32, {  }* }
12         %llvm.dbg.global_variable.type = type { i32, {  }*, {  }*, i8*, i8*, i8*, {  }*, i32, {  }*, i1, i1, {  }* }
13         %llvm.dbg.subprogram.type = type { i32, {  }*, {  }*, i8*, i8*, i8*, {  }*, i32, {  }*, i1, i1 }
14         %llvm.dbg.variable.type = type { i32, {  }*, i8*, {  }*, i32, {  }* }
15 @llvm.dbg.compile_units = linkonce constant %llvm.dbg.anchor.type { i32 393216, i32 17 }, section "llvm.metadata"               ; <%llvm.dbg.anchor.type*> [#uses=1]
16 @llvm.dbg.global_variables = linkonce constant %llvm.dbg.anchor.type { i32 393216, i32 52 }, section "llvm.metadata"            ; <%llvm.dbg.anchor.type*> [#uses=0]
17 @llvm.dbg.subprograms = linkonce constant %llvm.dbg.anchor.type { i32 393216, i32 46 }, section "llvm.metadata"         ; <%llvm.dbg.anchor.type*> [#uses=1]
18 @.str = internal constant [17 x i8] c"deaddebuglabel.d\00", section "llvm.metadata"             ; <[17 x i8]*> [#uses=1]
19 @.str1 = internal constant [50 x i8] c"/home/kamm/eigenes/projekte/llvmdc/llvmdc/mytests\00", section "llvm.metadata"           ; <[50 x i8]*> [#uses=1]
20 @.str2 = internal constant [48 x i8] c"LLVMDC (http://www.dsource.org/projects/llvmdc)\00", section "llvm.metadata"             ; <[48 x i8]*> [#uses=1]
21 @llvm.dbg.compile_unit = internal constant %llvm.dbg.compile_unit.type {
22     i32 393233, 
23     {  }* bitcast (%llvm.dbg.anchor.type* @llvm.dbg.compile_units to {  }*), 
24     i32 2, 
25     i8* getelementptr ([17 x i8]* @.str, i32 0, i32 0), 
26     i8* getelementptr ([50 x i8]* @.str1, i32 0, i32 0), 
27     i8* getelementptr ([48 x i8]* @.str2, i32 0, i32 0) }, section "llvm.metadata"              ; <%llvm.dbg.compile_unit.type*> [#uses=1]
28 @.str5 = internal constant [20 x i8] c"deaddebuglabel.main\00", section "llvm.metadata"         ; <[20 x i8]*> [#uses=1]
29 @.str6 = internal constant [5 x i8] c"main\00", section "llvm.metadata"         ; <[5 x i8]*> [#uses=1]
30 @llvm.dbg.subprogram7 = internal constant %llvm.dbg.subprogram.type {
31     i32 393262, 
32     {  }* bitcast (%llvm.dbg.anchor.type* @llvm.dbg.subprograms to {  }*), 
33     {  }* bitcast (%llvm.dbg.compile_unit.type* @llvm.dbg.compile_unit to {  }*), 
34     i8* getelementptr ([20 x i8]* @.str5, i32 0, i32 0), 
35     i8* getelementptr ([20 x i8]* @.str5, i32 0, i32 0), 
36     i8* getelementptr ([5 x i8]* @.str6, i32 0, i32 0), 
37     {  }* bitcast (%llvm.dbg.compile_unit.type* @llvm.dbg.compile_unit to {  }*), 
38     i32 3, 
39     {  }* null, 
40     i1 false, 
41     i1 true }, section "llvm.metadata"          ; <%llvm.dbg.subprogram.type*> [#uses=1]
42
43 declare void @llvm.dbg.func.start({  }*) nounwind
44
45 declare void @llvm.dbg.stoppoint(i32, i32, {  }*) nounwind
46
47 declare void @llvm.dbg.region.end({  }*) nounwind
48
49 define fastcc i32 @main() {
50 entry.main:
51         call void @llvm.dbg.func.start( {  }* bitcast (%llvm.dbg.subprogram.type* @llvm.dbg.subprogram7 to {  }*) )
52         br i1 true, label %reachable, label %unreachable
53
54 reachable:              ; preds = %entry.main
55         call void @llvm.dbg.region.end( {  }* bitcast (%llvm.dbg.subprogram.type* @llvm.dbg.subprogram7 to {  }*) )
56         ret i32 1
57
58 unreachable:            ; preds = %entry.main
59         call void @llvm.dbg.stoppoint( i32 7, i32 0, {  }* bitcast (%llvm.dbg.compile_unit.type* @llvm.dbg.compile_unit to {  }*) )
60         call void @llvm.dbg.region.end( {  }* bitcast (%llvm.dbg.subprogram.type* @llvm.dbg.subprogram7 to {  }*) )
61         ret i32 0
62 }