Rong Xu | 9837ef5 | 2016-02-04 18:39:09 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fprofile-instrument=clang -fcoverage-mapping -dump-coverage-mapping -emit-llvm-only %s | FileCheck %s |
Justin Bogner | 055ebc3 | 2015-06-16 06:24:15 +0000 | [diff] [blame] | 2 | |
| 3 | #define ifc if |
| 4 | |
| 5 | // CHECK: main |
| 6 | // CHECK-NEXT: File 0, {{[0-9]+}}:40 -> [[END:[0-9]+]]:2 = #0 |
| 7 | int main(int argc, const char *argv[]) { |
| 8 | // CHECK: Expansion,File 0, [[@LINE+1]]:3 -> [[@LINE+1]]:6 = #0 |
| 9 | ifc(1) return 0; |
| 10 | // Expansion,File 0, [[@LINE+2]]:3 -> [[@LINE+2]]:6 = (#0 - #1) |
| 11 | // File 0, [[@LINE+1]]:6 -> [[END]]:2 = (#0 - #1) |
| 12 | ifc(1) return 0; |
| 13 | return 0; |
| 14 | } |