diff options
author | Adrian Prantl <aprantl@apple.com> | 2014-05-28 19:10:59 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2014-05-28 19:10:59 +0000 |
commit | 328f88add9bdbcb8d5f08385a9d378dcef87933b (patch) | |
tree | da65e9beda229283d0a37a840bf6cf175e45a89f /clang/test/CodeGenCXX/debug-info-line-if.cpp | |
parent | 26b6edcf441207ec9680c1a41e3666f86ae58903 (diff) | |
download | bcm5719-llvm-328f88add9bdbcb8d5f08385a9d378dcef87933b.tar.gz bcm5719-llvm-328f88add9bdbcb8d5f08385a9d378dcef87933b.zip |
Debug Info: Fix the source range for IfStmt's ConditionScope.
Since the continuation block of the if statement is emitted within the
condition scope this had the undesirable effect of creating a line table
entry at the end of the then or else statement, a line that may have never
been executed.
PR19864 / rdar://problem/17052973
llvm-svn: 209764
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-line-if.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-line-if.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-line-if.cpp b/clang/test/CodeGenCXX/debug-info-line-if.cpp new file mode 100644 index 00000000000..0d4d22345a6 --- /dev/null +++ b/clang/test/CodeGenCXX/debug-info-line-if.cpp @@ -0,0 +1,20 @@ +// RUN: %clang -g -std=c++11 -S -emit-llvm %s -o - | FileCheck %s +// PR19864 +int main() { + int v[] = {13, 21, 8, 3, 34, 1, 5, 2}; + int a = 0, b = 0; + for (int x : v) + if (x >= 3) + ++b; // CHECK: add nsw{{.*}}, 1 + else if (x >= 0) + ++a; // CHECK: add nsw{{.*}}, 1 + // The continuation block if the if statement should not share the + // location of the ++a statement. Having it point to the end of + // the condition is not ideal either, but it's less missleading. + + // CHECK: br label + // CHECK: br label + // CHECK: br label {{.*}}, !dbg ![[DBG:.*]] + // CHECK: ![[DBG]] = metadata !{i32 [[@LINE-11]], i32 0, metadata !{{.*}}, null} + +} |