From 1e102971d2fb3a61b2a5662161c8552e677b7037 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 2 Mar 2007 23:05:28 +0000 Subject: 1. Sort switch cases using APInt safe comparison. 2. Make sure debug output of APInt values is safe for all bit widths. llvm-svn: 34855 --- llvm/lib/Transforms/Utils/LowerSwitch.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'llvm/lib/Transforms/Utils/LowerSwitch.cpp') diff --git a/llvm/lib/Transforms/Utils/LowerSwitch.cpp b/llvm/lib/Transforms/Utils/LowerSwitch.cpp index bcbadd0040c..c005d42197e 100644 --- a/llvm/lib/Transforms/Utils/LowerSwitch.cpp +++ b/llvm/lib/Transforms/Utils/LowerSwitch.cpp @@ -59,7 +59,7 @@ namespace { const ConstantInt* CI1 = cast(C1.first); const ConstantInt* CI2 = cast(C2.first); - return CI1->getZExtValue() < CI2->getZExtValue(); + return CI1->getValue().ult(CI2->getValue()); } }; @@ -128,7 +128,7 @@ BasicBlock* LowerSwitch::switchConvert(CaseItr Begin, CaseItr End, Case& Pivot = *(Begin + Mid); DOUT << "Pivot ==> " - << cast(Pivot.first)->getSExtValue() << "\n"; + << cast(Pivot.first)->getValue().toStringSigned(10) << "\n"; BasicBlock* LBranch = switchConvert(LHS.begin(), LHS.end(), Val, OrigBlock, Default); -- cgit v1.2.3