summaryrefslogtreecommitdiffstats
path: root/clang/include/clang/CodeGen/CodeGenOptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'clang/include/clang/CodeGen/CodeGenOptions.h')
-rw-r--r--clang/include/clang/CodeGen/CodeGenOptions.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/clang/include/clang/CodeGen/CodeGenOptions.h b/clang/include/clang/CodeGen/CodeGenOptions.h
index 31fd7b4bf1a..2effa46f968 100644
--- a/clang/include/clang/CodeGen/CodeGenOptions.h
+++ b/clang/include/clang/CodeGen/CodeGenOptions.h
@@ -43,8 +43,6 @@ public:
unsigned NoZeroInitializedInBSS : 1; /// -fno-zero-initialized-in-bss
unsigned OptimizationLevel : 3; /// The -O[0-4] option specified.
unsigned OptimizeSize : 1; /// If -Os is specified.
- unsigned SimplifyLibCalls : 1; /// Should standard library calls be treated
- /// specially.
unsigned TimePasses : 1; /// Set when -ftime-report is enabled.
unsigned UnitAtATime : 1; /// Unused. For mirroring GCC optimization
/// selection.
@@ -85,7 +83,7 @@ public:
NoZeroInitializedInBSS = 0;
OptimizationLevel = 0;
OptimizeSize = 0;
- SimplifyLibCalls = UnrollLoops = 0;
+ UnrollLoops = 0;
TimePasses = 0;
UnitAtATime = 1;
UnwindTables = 0;
OpenPOWER on IntegriCloud