diff options
Diffstat (limited to 'lib/Bytecode/Reader/Analyzer.cpp')
-rw-r--r-- | lib/Bytecode/Reader/Analyzer.cpp | 3 |
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; } |