diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-11-03 01:44:51 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-11-03 01:44:51 +0000 |
commit | 6b1fe928b1fc1f638a553b8cc5658636aa64dd53 (patch) | |
tree | 472874270f4547f1ab00e1ab3473483f294acf06 /llvm/lib/Bytecode | |
parent | 38b162c1d2c64fb4f00956033608dc30dbfb90ff (diff) | |
download | bcm5719-llvm-6b1fe928b1fc1f638a553b8cc5658636aa64dd53.tar.gz bcm5719-llvm-6b1fe928b1fc1f638a553b8cc5658636aa64dd53.zip |
Remove some dead code.
llvm-svn: 31401
Diffstat (limited to 'llvm/lib/Bytecode')
-rw-r--r-- | llvm/lib/Bytecode/Reader/Analyzer.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/lib/Bytecode/Reader/Analyzer.cpp b/llvm/lib/Bytecode/Reader/Analyzer.cpp index 542b52ce9cc..23d524c0aa7 100644 --- a/llvm/lib/Bytecode/Reader/Analyzer.cpp +++ b/llvm/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; } |