Align comments, colons and cases. Remove trailing

whitespace.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53453 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Duncan Sands 2008-07-11 07:37:30 +00:00
parent 1f26c188f8
commit 569d8f7087

View File

@ -197,7 +197,7 @@ struct ValID {
case GlobalName: return *Name < *V.Name; case GlobalName: return *Name < *V.Name;
case ConstSIntVal: return ConstPool64 < V.ConstPool64; case ConstSIntVal: return ConstPool64 < V.ConstPool64;
case ConstUIntVal: return UConstPool64 < V.UConstPool64; case ConstUIntVal: return UConstPool64 < V.UConstPool64;
case ConstAPInt : return ConstPoolInt->ult(*V.ConstPoolInt); case ConstAPInt: return ConstPoolInt->ult(*V.ConstPoolInt);
case ConstFPVal: return ConstPoolFP->compare(*V.ConstPoolFP) == case ConstFPVal: return ConstPoolFP->compare(*V.ConstPoolFP) ==
APFloat::cmpLessThan; APFloat::cmpLessThan;
case ConstNullVal: return false; case ConstNullVal: return false;