blob: 818c0e16c57b7fc5f79900339943aa0f48b4f6ac [file] [log] [blame]
Justin Bogner92bb3022014-09-15 22:23:29 +00001// RUN: llvm-cov show %S/Inputs/showExpansions.covmapping -instr-profile %S/Inputs/showExpansions.profdata -dump -show-expansions -filename-equivalence %s 2>&1 | FileCheck %s
Justin Bogner3d7260e2014-09-11 23:20:48 +00002
3#define DO_SOMETHING_ELSE() \
4 do { \
5 } while (0)
6#define ANOTHER_THING() \
7 do { \
8 if (0) { \
9 } \
10 } while (0)
11
12#define DO_SOMETHING(x) \
13 do { \
14 if (x) \
15 DO_SOMETHING_ELSE(); \
16 else \
17 ANOTHER_THING(); \
18 } while (0)
Justin Bognera829fde2014-09-19 19:04:08 +000019// CHECK-DAG: Expansion at line [[@LINE-4]], 7 -> 24
20// CHECK-DAG: Expansion at line [[@LINE-3]], 7 -> 20
Justin Bogner3d7260e2014-09-11 23:20:48 +000021
22int main(int argc, const char *argv[]) {
23 for (int i = 0; i < 100; ++i)
Justin Bognera829fde2014-09-19 19:04:08 +000024 DO_SOMETHING(i); // CHECK-DAG: Expansion at line [[@LINE]], 5 -> 17
Justin Bogner3d7260e2014-09-11 23:20:48 +000025 return 0;
26}
Vedant Kumar7101d732016-07-26 22:50:58 +000027// RUN: llvm-cov export %S/Inputs/showExpansions.covmapping -instr-profile %S/Inputs/showExpansions.profdata 2>&1 | FileCheck %S/Inputs/showExpansions.json