blob: 30edd90584f8bfdd16de9527ed0db69a5dd1c617 [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}
27
Justin Bogner3d7260e2014-09-11 23:20:48 +000028// llvm-cov doesn't work on big endian yet
29// XFAIL: powerpc64-, s390x, mips-, mips64-, sparc