1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

Remove some dead code.

llvm-svn: 31401
This commit is contained in:
Reid Spencer 2006-11-03 01:44:51 +00:00
parent 5cfe91aaca
commit 52135336f2

View File

@ -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;
}