diff options
author | David Blaikie <dblaikie@gmail.com> | 2015-01-28 19:50:09 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2015-01-28 19:50:09 +0000 |
commit | 298720d324fc8ad041b3b9d9bb9a80982ee53ced (patch) | |
tree | 1ed2f46e4bc859a7598273f45c4962224e2836d4 /clang/test/CodeGenCXX/debug-info-line.cpp | |
parent | 4058dd9f3f17bb91e96bda91ed5ecad183a30cb2 (diff) | |
download | bcm5719-llvm-298720d324fc8ad041b3b9d9bb9a80982ee53ced.tar.gz bcm5719-llvm-298720d324fc8ad041b3b9d9bb9a80982ee53ced.zip |
DebugInfo: Attribute implicit boolean tests to the expression being tested, not to the outer use of that expression.
This is half a fix for a GDB test suite failure that expects to start at
'a' in the following code:
void func(int a)
if (a
&&
b)
...
But instead, without this change, the comparison was assigned to '&&'
(well, worse actually - because there was a chained 'a && b && c' and it
was assigned to the second '&&' because of a recursive application of
this bug) and then the load folded into the comparison so breaking on
the function started at '&&' instead of 'a'.
The other part of this needs to be fixed in LLVM where it's ignoring the
location of the icmp and instead using the location of the branch
instruction.
The fix to the conditional operator is actually a no-op currently,
because the conditional operator's location coincides with 'a' (the
start of the conditional expression) but should probably be '?' instead.
See the FIXME in the test case that mentions the ARCMigration tool
failures when I tried to make that change.
llvm-svn: 227356
Diffstat (limited to 'clang/test/CodeGenCXX/debug-info-line.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/debug-info-line.cpp | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/debug-info-line.cpp b/clang/test/CodeGenCXX/debug-info-line.cpp index a23c242a228..af78f23c0e5 100644 --- a/clang/test/CodeGenCXX/debug-info-line.cpp +++ b/clang/test/CodeGenCXX/debug-info-line.cpp @@ -213,6 +213,43 @@ void f17(int *x) { x[1]; } +// CHECK-LABEL: define +void f18(int a, int b) { +// CHECK: icmp {{.*}}, !dbg [[DBG_F18_1:![0-9]*]] +// CHECK: br {{.*}}, !dbg [[DBG_F18_2:![0-9]*]] +#line 2000 + if (a // + && // + b) + ; +} + +// CHECK-LABEL: define +void f19(int a, int b) { +// CHECK: icmp {{.*}}, !dbg [[DBG_F19_1:![0-9]*]] +// CHECK: br {{.*}}, !dbg [[DBG_F19_2:![0-9]*]] +#line 2100 + if (a // + || // + b) + ; +} + +// CHECK-LABEL: define +void f20(int a, int b, int c) { +// CHECK: icmp {{.*}}, !dbg [[DBG_F20_1:![0-9]*]] +// FIXME: Conditional operator's exprloc should be the '?' not the start of the +// expression, then this would go in the right place. (but adding getExprLoc to +// the ConditionalOperator breaks the ARC migration tool - need to investigate +// further). +// CHECK: br {{.*}}, !dbg [[DBG_F20_1]] +#line 2200 + if (a // + ? // + b : c) + ; +} + // CHECK: [[DBG_F1]] = !MDLocation(line: 100, // CHECK: [[DBG_FOO_VALUE]] = !MDLocation(line: 200, // CHECK: [[DBG_FOO_REF]] = !MDLocation(line: 202, @@ -236,3 +273,8 @@ void f17(int *x) { // CHECK: [[DBG_F15]] = !MDLocation(line: 1700, // CHECK: [[DBG_F16]] = !MDLocation(line: 1800, // CHECK: [[DBG_F17]] = !MDLocation(line: 1900, +// CHECK: [[DBG_F18_1]] = !MDLocation(line: 2000, +// CHECK: [[DBG_F18_2]] = !MDLocation(line: 2001, +// CHECK: [[DBG_F19_1]] = !MDLocation(line: 2100, +// CHECK: [[DBG_F19_2]] = !MDLocation(line: 2101, +// CHECK: [[DBG_F20_1]] = !MDLocation(line: 2200, |