1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Fix incorrect debug code

llvm-svn: 11821
This commit is contained in:
Chris Lattner 2004-02-25 15:15:04 +00:00
parent ab9628ad18
commit 04f116953d

View File

@ -115,7 +115,8 @@ BasicBlock* LowerSwitch::switchConvert(CaseItr Begin, CaseItr End,
Case& Pivot = *(Begin + Mid);
DEBUG(std::cerr << "Pivot ==> "
<< cast<ConstantUInt>(Pivot.first)->getValue() << "\n");
<< (int64_t)cast<ConstantInt>(Pivot.first)->getRawValue()
<< "\n");
BasicBlock* LBranch = switchConvert(LHS.begin(), LHS.end(), Val,
OrigBlock, Default);