summaryrefslogtreecommitdiff
path: root/tools/llc
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2013-07-12 22:25:20 +0000
committerBill Wendling <isanbard@gmail.com>2013-07-12 22:25:20 +0000
commit8a50013cc23810aa3e1ac8da66764fbb2d96147e (patch)
tree101213d40e04c54fcc8c4d82eef0205e9847de89 /tools/llc
parent6383ef98fae2bab4595c6c36394093b7ad4a5597 (diff)
downloadllvm-8a50013cc23810aa3e1ac8da66764fbb2d96147e.tar.gz
llvm-8a50013cc23810aa3e1ac8da66764fbb2d96147e.tar.bz2
llvm-8a50013cc23810aa3e1ac8da66764fbb2d96147e.tar.xz
Use the function attributes to pass along the stack protector buffer size.
Now that we have robust function attributes, don't use a command line option to specify the stack protecto buffer size. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@186217 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc')
-rw-r--r--tools/llc/llc.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/llc/llc.cpp b/tools/llc/llc.cpp
index bcabafc467..9f6be81fc9 100644
--- a/tools/llc/llc.cpp
+++ b/tools/llc/llc.cpp
@@ -280,7 +280,6 @@ static int compileModule(char **argv, LLVMContext &Context) {
Options.PositionIndependentExecutable = EnablePIE;
Options.EnableSegmentedStacks = SegmentedStacks;
Options.UseInitArray = UseInitArray;
- Options.SSPBufferSize = SSPBufferSize;
OwningPtr<TargetMachine>
target(TheTarget->createTargetMachine(TheTriple.getTriple(),