aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Reader/Analyzer.cpp
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2006-11-03 01:44:51 +0000
committerReid Spencer <rspencer@reidspencer.com>2006-11-03 01:44:51 +0000
commite03f09c64f6abc3f5ac11395b4500d14d9a81850 (patch)
tree08c7ee5f35f6ec98a674c50d47235d2beaade3ec /lib/Bytecode/Reader/Analyzer.cpp
parent115bfcb574bd75c870147616472fdf69b80048e7 (diff)
Remove some dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31401 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Reader/Analyzer.cpp')
-rw-r--r--lib/Bytecode/Reader/Analyzer.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Bytecode/Reader/Analyzer.cpp b/lib/Bytecode/Reader/Analyzer.cpp
index 542b52ce9c..23d524c0aa 100644
--- 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;
}