diff options
author | Chad Rosier <mcrosier@apple.com> | 2013-01-23 19:32:37 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2013-01-23 19:32:37 +0000 |
commit | b09350d9a5639f55c46659b30be12a0c938378ab (patch) | |
tree | bda7290bf258f814f5843010ab0a3dc50aa9cde2 /include/llvm/Target | |
parent | 5ed3ac1185a52756a55ac043ede983a2ed4ea8f1 (diff) | |
download | external_llvm-b09350d9a5639f55c46659b30be12a0c938378ab.zip external_llvm-b09350d9a5639f55c46659b30be12a0c938378ab.tar.gz external_llvm-b09350d9a5639f55c46659b30be12a0c938378ab.tar.bz2 |
Initialize SSPBufferSize. PR14999. Patch by Vinson Lee.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173285 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Target')
-rw-r--r-- | include/llvm/Target/TargetOptions.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/llvm/Target/TargetOptions.h b/include/llvm/Target/TargetOptions.h index 8fc566e..c31db24 100644 --- a/include/llvm/Target/TargetOptions.h +++ b/include/llvm/Target/TargetOptions.h @@ -48,10 +48,10 @@ namespace llvm { UseSoftFloat(false), NoZerosInBSS(false), JITExceptionHandling(false), JITEmitDebugInfo(false), JITEmitDebugInfoToDisk(false), GuaranteedTailCallOpt(false), DisableTailCalls(false), - StackAlignmentOverride(0), RealignStack(true), EnableFastISel(false), - PositionIndependentExecutable(false), EnableSegmentedStacks(false), - UseInitArray(false), TrapFuncName(""),FloatABIType(FloatABI::Default), - AllowFPOpFusion(FPOpFusion::Standard) + StackAlignmentOverride(0), RealignStack(true), SSPBufferSize(0), + EnableFastISel(false), PositionIndependentExecutable(false), + EnableSegmentedStacks(false), UseInitArray(false), TrapFuncName(""), + FloatABIType(FloatABI::Default), AllowFPOpFusion(FPOpFusion::Standard) {} /// PrintMachineCode - This flag is enabled when the -print-machineinstrs |