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:
115bfcb
)
Remove some dead code.
author
Reid Spencer
<rspencer@reidspencer.com>
Fri, 3 Nov 2006 01:44:51 +0000
(
01:44
+0000)
committer
Reid Spencer
<rspencer@reidspencer.com>
Fri, 3 Nov 2006 01:44:51 +0000
(
01:44
+0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31401
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Bytecode/Reader/Analyzer.cpp
patch
|
blob
|
history
diff --git
a/lib/Bytecode/Reader/Analyzer.cpp
b/lib/Bytecode/Reader/Analyzer.cpp
index 542b52ce9ccb864393f94f2db717268d956841b5..23d524c0aa763cf138117249892f5524e4b269c2 100644
(file)
--- a/
lib/Bytecode/Reader/Analyzer.cpp
+++ b/
lib/Bytecode/Reader/Analyzer.cpp
@@
-704,8
+704,7
@@
void PrintBytecodeAnalysis(BytecodeAnalysis& bca, std::ostream& Out )
print(Out, "# of VBR Compressed Bytes", I->second.vbrCompBytes);
print(Out, "# of VBR Expanded Bytes", I->second.vbrExpdBytes);
print(Out, "Bytes Saved With VBR",
- double(I->second.vbrExpdBytes) - I->second.vbrCompBytes),
- double(I->second.vbrExpdBytes);
+ double(I->second.vbrExpdBytes) - I->second.vbrCompBytes);
}
++I;
}