diff options
Diffstat (limited to 'include/clang/Frontend/CodeGenOptions.h')
-rw-r--r-- | include/clang/Frontend/CodeGenOptions.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/clang/Frontend/CodeGenOptions.h b/include/clang/Frontend/CodeGenOptions.h index 3e34093352..8610b8a89b 100644 --- a/include/clang/Frontend/CodeGenOptions.h +++ b/include/clang/Frontend/CodeGenOptions.h @@ -185,6 +185,9 @@ public: /// The run-time penalty for bounds checking, or 0 to disable. unsigned char BoundsChecking; + /// The lower bound for a buffer to be considered for stack protection. + unsigned SSPBufferSize; + /// The default TLS model to use. TLSModel DefaultTLSModel; @@ -241,6 +244,7 @@ public: StackRealignment = 0; StackAlignment = 0; BoundsChecking = 0; + SSPBufferSize = 8; UseInitArray = 0; DebugInfo = NoDebugInfo; |