Update comment

llvm-svn: 193651
This commit is contained in:
Matt Arsenault 2013-10-29 21:04:19 +00:00
parent a1ca46d003
commit 87596662cd
1 changed files with 2 additions and 2 deletions

View File

@ -1445,8 +1445,8 @@ private:
/// indicates how instruction selection should deal with the condition code.
///
/// Because each CC action takes up 2 bits, we need to have the array size be
/// large enough to fit all of the value types. This can be done by dividing
/// the MVT::LAST_VALUETYPE by 16 and adding one.
/// large enough to fit all of the value types. This can be done by rounding
/// up the MVT::LAST_VALUETYPE value to the next multiple of 16.
uint32_t CondCodeActions[ISD::SETCC_INVALID][(MVT::LAST_VALUETYPE + 15) / 16];
ValueTypeActionImpl ValueTypeActions;