From 52135336f259a8b7926c1e2e1564c43249633cd6 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 3 Nov 2006 01:44:51 +0000 Subject: [PATCH] Remove some dead code. llvm-svn: 31401 --- lib/Bytecode/Reader/Analyzer.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Bytecode/Reader/Analyzer.cpp b/lib/Bytecode/Reader/Analyzer.cpp index 542b52ce9cc..23d524c0aa7 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; }