summaryrefslogtreecommitdiff
path: root/test/tools/llvm-cov/combine_expansions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/tools/llvm-cov/combine_expansions.cpp')
-rw-r--r--test/tools/llvm-cov/combine_expansions.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/tools/llvm-cov/combine_expansions.cpp b/test/tools/llvm-cov/combine_expansions.cpp
new file mode 100644
index 0000000000000..7017f2957693f
--- /dev/null
+++ b/test/tools/llvm-cov/combine_expansions.cpp
@@ -0,0 +1,26 @@
+// Check that we combine expansion regions.
+
+// RUN: llvm-profdata merge %S/Inputs/combine_expansions.proftext -o %t.profdata
+// RUN: llvm-cov show %S/Inputs/combine_expansions.covmapping -instr-profile %t.profdata -filename-equivalence %s | FileCheck %s
+
+#define SIMPLE_OP \
+ ++x
+// CHECK: | [[@LINE-2]]|#define SIMPLE_OP
+// CHECK-NEXT: 2| [[@LINE-2]]| ++x
+
+#define DO_SOMETHING \
+ { \
+ int x = 0; \
+ SIMPLE_OP; \
+ }
+// CHECK: | [[@LINE-5]]|#define DO_SOMETHING
+// CHECK-NEXT: 2| [[@LINE-5]]| {
+// CHECK-NEXT: 2| [[@LINE-5]]| int x = 0;
+// CHECK-NEXT: 2| [[@LINE-5]]| SIMPLE_OP;
+// CHECK-NEXT: 2| [[@LINE-5]]| }
+
+int main() { // CHECK: 1| [[@LINE]]|int main() {
+ DO_SOMETHING; // CHECK-NEXT: 1| [[@LINE]]| DO_SOMETHING;
+ DO_SOMETHING; // CHECK-NEXT: 1| [[@LINE]]| DO_SOMETHING;
+ return 0; // CHECK-NEXT: 1| [[@LINE]]| return 0;
+} // CHECK-NEXT: 1| [[@LINE]]|}