summaryrefslogtreecommitdiff
path: root/include/clang/CodeGen
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-30 08:39:32 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-30 08:39:32 +0000
commit3636e1d784aedb37052aa235966e4fdbe7ed9082 (patch)
tree9472dfe8aa141c291b4ac6c77faa3368b10f595f /include/clang/CodeGen
parentae8e17e85acde7d7f3274d0957afa88995ea3cd7 (diff)
downloadclang-3636e1d784aedb37052aa235966e4fdbe7ed9082.tar.gz
Eliminate CodeGenOptions::SimplifyLibCalls.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90117 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/clang/CodeGen')
-rw-r--r--include/clang/CodeGen/CodeGenOptions.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/include/clang/CodeGen/CodeGenOptions.h b/include/clang/CodeGen/CodeGenOptions.h
index 31fd7b4bf1..2effa46f96 100644
--- a/include/clang/CodeGen/CodeGenOptions.h
+++ b/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;