diff options
author | Vedant Kumar <vsk@apple.com> | 2017-11-29 22:25:14 +0000 |
---|---|---|
committer | Vedant Kumar <vsk@apple.com> | 2017-11-29 22:25:14 +0000 |
commit | fa8fa044ec46b94e64971efa8852df0d58114062 (patch) | |
tree | b18f5c989ffaf3cf210563d8a7465464671d02f7 /clang/test/CoverageMapping/while.c | |
parent | 92ce4bcfd848150ca9a9137daf69fdb027f9fa54 (diff) | |
download | bcm5719-llvm-fa8fa044ec46b94e64971efa8852df0d58114062.tar.gz bcm5719-llvm-fa8fa044ec46b94e64971efa8852df0d58114062.zip |
[Coverage] Emit gap areas in braces-optional statements (PR35387)
Emit a gap area starting after the r-paren location and ending at the
start of the body for the braces-optional statements (for, for-each,
while, etc). The count for the gap area equal to the body's count. This
extends the fix in r317758.
Fixes PR35387, rdar://35570345
Testing: stage2 coverage-enabled build of clang, check-clang
llvm-svn: 319373
Diffstat (limited to 'clang/test/CoverageMapping/while.c')
-rw-r--r-- | clang/test/CoverageMapping/while.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CoverageMapping/while.c b/clang/test/CoverageMapping/while.c index 7f09e4b0d72..616ecf69020 100644 --- a/clang/test/CoverageMapping/while.c +++ b/clang/test/CoverageMapping/while.c @@ -3,10 +3,10 @@ // CHECK: main int main() { // CHECK-NEXT: File 0, [[@LINE]]:12 -> [[@LINE+8]]:2 = #0 int j = 0; // CHECK-NEXT: File 0, [[@LINE+1]]:9 -> [[@LINE+1]]:14 = (#0 + #1) - while(j < 5) ++j; // CHECK-NEXT: File 0, [[@LINE]]:16 -> [[@LINE]]:19 = #1 - j = 0; - while - (j < 5) // CHECK-NEXT: File 0, [[@LINE]]:5 -> [[@LINE]]:10 = (#0 + #2) + while(j < 5) ++j; // CHECK-NEXT: File 0, [[@LINE]]:15 -> [[@LINE]]:16 = #1 + j = 0; // CHECK-NEXT: File 0, [[@LINE-1]]:16 -> [[@LINE-1]]:19 = #1 + while // CHECK-NEXT: File 0, [[@LINE+1]]:5 -> [[@LINE+1]]:10 = (#0 + #2) + (j < 5) // CHECK-NEXT: Gap,File 0, [[@LINE]]:11 -> [[@LINE+1]]:6 = #2 ++j; // CHECK-NEXT: File 0, [[@LINE]]:6 -> [[@LINE]]:9 = #2 return 0; } |