From: Bill Wendling Date: Mon, 10 Dec 2012 19:47:53 +0000 (+0000) Subject: Specify if `-mno-red-zone' was used when creating the GCOV instrucmentation pass. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44f4a2d8a95e7f12c61530a9b57854be009aef38;p=clang 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. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169755 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/BackendUtil.cpp b/lib/CodeGen/BackendUtil.cpp index f6e9dd7888..e960871542 100644 --- a/lib/CodeGen/BackendUtil.cpp +++ b/lib/CodeGen/BackendUtil.cpp @@ -294,7 +294,9 @@ void EmitAssemblyHelper::CreatePasses(TargetMachine *TM) { if (CodeGenOpts.EmitGcovArcs || CodeGenOpts.EmitGcovNotes) { MPM->add(createGCOVProfilerPass(CodeGenOpts.EmitGcovNotes, CodeGenOpts.EmitGcovArcs, - TargetTriple.isMacOSX())); + TargetTriple.isMacOSX(), + false, + CodeGenOpts.DisableRedZone)); if (CodeGenOpts.getDebugInfo() == CodeGenOptions::NoDebugInfo) MPM->add(createStripSymbolsPass(true)); diff --git a/test/CodeGen/code-coverage.c b/test/CodeGen/code-coverage.c new file mode 100644 index 0000000000..b073ae6d0b --- /dev/null +++ b/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 +// + +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