[llvm-commits] [llvm] r173285 - /llvm/trunk/include/llvm/Target/TargetOptions.h
Chad Rosier
mcrosier at apple.com
Wed Jan 23 11:32:37 PST 2013
Author: mcrosier
Date: Wed Jan 23 13:32:37 2013
New Revision: 173285
URL: http://llvm.org/viewvc/llvm-project?rev=173285&view=rev
Log:
Initialize SSPBufferSize. PR14999. Patch by Vinson Lee.
Modified:
llvm/trunk/include/llvm/Target/TargetOptions.h
Modified: llvm/trunk/include/llvm/Target/TargetOptions.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Target/TargetOptions.h?rev=173285&r1=173284&r2=173285&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Target/TargetOptions.h (original)
+++ llvm/trunk/include/llvm/Target/TargetOptions.h Wed Jan 23 13:32:37 2013
@@ -48,10 +48,10 @@
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
More information about the llvm-commits
mailing list