diff options
author | Sean Eveson <eveson.sean@gmail.com> | 2018-01-08 13:42:26 +0000 |
---|---|---|
committer | Sean Eveson <eveson.sean@gmail.com> | 2018-01-08 13:42:26 +0000 |
commit | 5110d4f5c01b33889b6959a70eede87457e734e7 (patch) | |
tree | 4465b4c82b44056338f37c4c94e0198531b1ede8 /clang/lib/CodeGen/BackendUtil.cpp | |
parent | 3800f0f11d61968ae32ee79bfbdb0b4d808985ba (diff) | |
download | bcm5719-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.cpp | 1 |
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; |