summaryrefslogtreecommitdiffstats
path: root/clang/lib/CodeGen/BackendUtil.cpp
diff options
context:
space:
mode:
authorSean Eveson <eveson.sean@gmail.com>2018-01-08 13:42:26 +0000
committerSean Eveson <eveson.sean@gmail.com>2018-01-08 13:42:26 +0000
commit5110d4f5c01b33889b6959a70eede87457e734e7 (patch)
tree4465b4c82b44056338f37c4c94e0198531b1ede8 /clang/lib/CodeGen/BackendUtil.cpp
parent3800f0f11d61968ae32ee79bfbdb0b4d808985ba (diff)
downloadbcm5719-llvm-5110d4f5c01b33889b6959a70eede87457e734e7.tar.gz
bcm5719-llvm-5110d4f5c01b33889b6959a70eede87457e734e7.zip
[Driver] Add flag enabling the function stack size section that was added in r319430
Adds the -fstack-size-section flag to enable the .stack_sizes section. The flag defaults to on for the PS4 triple. Differential Revision: https://reviews.llvm.org/D40712 llvm-svn: 321992
Diffstat (limited to 'clang/lib/CodeGen/BackendUtil.cpp')
-rw-r--r--clang/lib/CodeGen/BackendUtil.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/BackendUtil.cpp b/clang/lib/CodeGen/BackendUtil.cpp
index e2349da5f0a..c4a37dfc8b3 100644
--- a/clang/lib/CodeGen/BackendUtil.cpp
+++ b/clang/lib/CodeGen/BackendUtil.cpp
@@ -448,6 +448,7 @@ static void initTargetOptions(llvm::TargetOptions &Options,
Options.UniqueSectionNames = CodeGenOpts.UniqueSectionNames;
Options.EmulatedTLS = CodeGenOpts.EmulatedTLS;
Options.DebuggerTuning = CodeGenOpts.getDebuggerTuning();
+ Options.EmitStackSizeSection = CodeGenOpts.StackSizeSection;
if (CodeGenOpts.EnableSplitDwarf)
Options.MCOptions.SplitDwarfFile = CodeGenOpts.SplitDwarfFile;
OpenPOWER on IntegriCloud