1. Sort switch cases using APInt safe comparison.
authorReid Spencer <rspencer@reidspencer.com>
Fri, 2 Mar 2007 23:05:28 +0000 (23:05 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Fri, 2 Mar 2007 23:05:28 +0000 (23:05 +0000)
2. Make sure debug output of APInt values is safe for all bit widths.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34855 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/LowerSwitch.cpp

index bcbadd0040ccc6c46a473e3a9a2252a9c069d7f4..c005d42197e599e132fed147627032a3569ef4b4 100644 (file)
@@ -59,7 +59,7 @@ namespace {
 
       const ConstantInt* CI1 = cast<const ConstantInt>(C1.first);
       const ConstantInt* CI2 = cast<const ConstantInt>(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<ConstantInt>(Pivot.first)->getSExtValue() << "\n";
+       << cast<ConstantInt>(Pivot.first)->getValue().toStringSigned(10) << "\n";
 
   BasicBlock* LBranch = switchConvert(LHS.begin(), LHS.end(), Val,
                                       OrigBlock, Default);