diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-12-10 19:47:53 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-12-10 19:47:53 +0000 |
commit | 44f4a2d8a95e7f12c61530a9b57854be009aef38 (patch) | |
tree | 6c2baa54b41f29e63b7e47a83673cd3edfc6a528 /lib/CodeGen/BackendUtil.cpp | |
parent | 8b39c6693aadd30f77ac039de69130c22e066994 (diff) |
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>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169755 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/BackendUtil.cpp')
-rw-r--r-- | lib/CodeGen/BackendUtil.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
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)); |