summaryrefslogtreecommitdiff
path: root/tools/opt/opt.cpp
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-08-01 21:42:05 +0000
committerBill Wendling <isanbard@gmail.com>2013-08-01 21:42:05 +0000
commit61fc8d670f1e991804c2ab753e567981e60962cb (patch)
tree01bf0e1eba2709eb4608e1e00504425452f66a53 /tools/opt/opt.cpp
parent8cb1d81250ab0957f956146af7bfe62cdd0a9f3e (diff)
downloadllvm-61fc8d670f1e991804c2ab753e567981e60962cb.tar.gz
llvm-61fc8d670f1e991804c2ab753e567981e60962cb.tar.bz2
llvm-61fc8d670f1e991804c2ab753e567981e60962cb.tar.xz
Use function attributes to indicate that we don't want to realign the stack.
Function attributes are the future! So just query whether we want to realign the stack directly from the function instead of through a random target options structure. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187618 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/opt/opt.cpp')
-rw-r--r--tools/opt/opt.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp
index fa0a0ed2ba..37637ca628 100644
--- a/tools/opt/opt.cpp
+++ b/tools/opt/opt.cpp
@@ -504,7 +504,6 @@ static TargetOptions GetTargetOptions() {
Options.GuaranteedTailCallOpt = EnableGuaranteedTailCallOpt;
Options.DisableTailCalls = DisableTailCalls;
Options.StackAlignmentOverride = OverrideStackAlignment;
- Options.RealignStack = EnableRealignStack;
Options.TrapFuncName = TrapFuncName;
Options.PositionIndependentExecutable = EnablePIE;
Options.EnableSegmentedStacks = SegmentedStacks;