aboutsummaryrefslogtreecommitdiff
path: root/clang/test/CodeGen/code-coverage.c
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-12-10 19:47:53 +0000
committerBill Wendling <isanbard@gmail.com>2012-12-10 19:47:53 +0000
commit9a12912c9abb0ee34885b6c2d45f693cc2155b32 (patch)
tree5f302644e14efc142b9b22e4d0665835ac61747f /clang/test/CodeGen/code-coverage.c
parent74f334e476a62d0ddcd4751d266560a503e00d55 (diff)
downloadllvm-9a12912c9abb0ee34885b6c2d45f693cc2155b32.zip
llvm-9a12912c9abb0ee34885b6c2d45f693cc2155b32.tar.gz
llvm-9a12912c9abb0ee34885b6c2d45f693cc2155b32.tar.bz2
Specify if `-mno-red-zone' was used when creating the GCOV instrucmentation pass.
This prevents the functions generated by that pass from using the red zone. <rdar://problem/12843084> llvm-svn: 169755
Diffstat (limited to 'clang/test/CodeGen/code-coverage.c')
-rw-r--r--clang/test/CodeGen/code-coverage.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/clang/test/CodeGen/code-coverage.c b/clang/test/CodeGen/code-coverage.c
new file mode 100644
index 0000000..b073ae6
--- /dev/null
+++ b/clang/test/CodeGen/code-coverage.c
@@ -0,0 +1,19 @@
+// RUN: %clang_cc1 -O0 -mno-red-zone -fprofile-arcs -ftest-coverage -emit-llvm %s -o - | FileCheck %s
+// <rdar://problem/12843084>
+
+int test1(int a) {
+ switch (a % 2) {
+ case 0:
+ ++a;
+ case 1:
+ a /= 2;
+ }
+ return a;
+}
+
+// Check tha the `-mno-red-zone' flag is set here on the generated functions.
+
+// CHECK: void @__llvm_gcov_indirect_counter_increment(i32* %{{.*}}, i64** %{{.*}}) unnamed_addr noinline noredzone
+// CHECK: void @__llvm_gcov_writeout() unnamed_addr noinline noredzone
+// CHECK: void @__llvm_gcov_init() unnamed_addr noinline noredzone
+// CHECK: void @__gcov_flush() unnamed_addr noinline noredzone