summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGen/debug-info-scope-file.c
blob: cc38449f2b23c93785f96a23aa48e9c7bc96fdb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// RUN: %clang_cc1 -debug-info-kind=limited -emit-llvm < %s | FileCheck %s

// Check that, just because we emitted a function from a different file doesn't
// mean we insert a file-change inside the next function.

// CHECK: ret void, !dbg [[F1_LINE:![0-9]*]]
// CHECK: ret void, !dbg [[F2_LINE:![0-9]*]]
// CHECK: [[F1:![0-9]*]] = distinct !DISubprogram(name: "f1",{{.*}}
// isDefinition: true CHECK: [[F1_LINE]] = !DILocation({{.*}}, scope: [[F1]],
// isImplicitCode: true) CHECK: [[F2:![0-9]*]] = distinct !DISubprogram(name:
// "f2",{{.*}} isDefinition: true CHECK: [[F2_LINE]] = !DILocation({{.*}},
// scope: [[F2]], isImplicitCode: true)

void f1() {
}

# 2 "foo.c"

void f2() {
}

OpenPOWER on IntegriCloud