projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a9f2fd
)
Revive SizeOptLevel-explaining comments that were dropped in r203669
author
Eli Bendersky
<eliben@google.com>
Wed, 12 Mar 2014 16:44:17 +0000
(16:44 +0000)
committer
Eli Bendersky
<eliben@google.com>
Wed, 12 Mar 2014 16:44:17 +0000
(16:44 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@203675
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Transforms/IPO/InlineSimple.cpp
patch
|
blob
|
history
diff --git
a/lib/Transforms/IPO/InlineSimple.cpp
b/lib/Transforms/IPO/InlineSimple.cpp
index e5f46d7a7837dc142d57c0bb7617b79eeaa639d2..7141064b3b0502f1938445db572828b6ef894958 100644
(file)
--- a/
lib/Transforms/IPO/InlineSimple.cpp
+++ b/
lib/Transforms/IPO/InlineSimple.cpp
@@
-60,9
+60,9
@@
static int computeThresholdFromOptLevels(unsigned OptLevel,
unsigned SizeOptLevel) {
if (OptLevel > 2)
return 275;
- if (SizeOptLevel == 1)
+ if (SizeOptLevel == 1)
// -Os
return 75;
- if (SizeOptLevel == 2)
+ if (SizeOptLevel == 2)
// -Oz
return 25;
return 225;
}