File: debug-info-line-if-2.cpp

package info (click to toggle)
llvm-toolchain-20 1%3A20.1.8-1~exp1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 2,111,388 kB
  • sloc: cpp: 7,438,767; ansic: 1,393,871; asm: 1,012,926; python: 241,728; f90: 86,635; objc: 75,411; lisp: 42,144; pascal: 17,286; sh: 10,027; ml: 5,082; perl: 4,730; awk: 3,523; makefile: 3,349; javascript: 2,251; xml: 892; fortran: 672
file content (45 lines) | stat: -rw-r--r-- 1,451 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// RUN: %clang_cc1 -debug-info-kind=limited -gno-column-info -triple=x86_64-pc-linux -emit-llvm %s -o - | FileCheck  %s

// The important thing is that the compare and the conditional branch have
// locs with the same scope (the lexical block for the 'if'). By turning off
// column info, they end up with the same !dbg record, which halves the number
// of checks to verify the scope.

int c = 2;

int f() {
#line 100
  if (int a = 5; a > c)
    return 1;
  return 0;
}
// CHECK-LABEL: define {{.*}} @_Z1fv()
// CHECK:       = icmp {{.*}} !dbg [[F_CMP:![0-9]+]]
// CHECK-NEXT:  br i1 {{.*}} !dbg [[F_CMP]]

int g() {
#line 200
  if (int a = f())
    return 2;
  return 3;
}
// CHECK-LABEL: define {{.*}} @_Z1gv()
// CHECK:       = icmp {{.*}} !dbg [[G_CMP:![0-9]+]]
// CHECK-NEXT:  br i1 {{.*}} !dbg [[G_CMP]]

int h() {
#line 300
  if (c > 3)
    return 4;
  return 5;
}
// CHECK-LABEL: define {{.*}} @_Z1hv()
// CHECK:       = icmp {{.*}} !dbg [[H_CMP:![0-9]+]]
// CHECK-NEXT:  br i1 {{.*}} !dbg [[H_CMP]]

// CHECK-DAG: [[F_CMP]] = !DILocation(line: 100, scope: [[F_SCOPE:![0-9]+]]
// CHECK-DAG: [[F_SCOPE]] = distinct !DILexicalBlock({{.*}} line: 100)
// CHECK-DAG: [[G_CMP]] = !DILocation(line: 200, scope: [[G_SCOPE:![0-9]+]]
// CHECK-DAG: [[G_SCOPE]] = distinct !DILexicalBlock({{.*}} line: 200)
// CHECK-DAG: [[H_CMP]] = !DILocation(line: 300, scope: [[H_SCOPE:![0-9]+]]
// CHECK-DAG: [[H_SCOPE]] = distinct !DILexicalBlock({{.*}} line: 300)