Silence a warning.

Despite changing the order of evaluation, this doesn't actually change the
meaning of the statement.

llvm-svn: 60177
This commit is contained in:
Nick Lewycky 2008-11-27 17:29:52 +00:00
parent 50343cd2fe
commit 2c96bdd8d6
1 changed files with 1 additions and 1 deletions

View File

@ -397,7 +397,7 @@ bool SchedulePostRATDList::BreakAntiDependencies() {
// Determine AntiDepReg's register class, if it is live and is
// consistently used within a single class.
const TargetRegisterClass *RC = AntiDepReg != 0 ? Classes[AntiDepReg] : 0;
assert(AntiDepReg == 0 || RC != NULL &&
assert((AntiDepReg == 0 || RC != NULL) &&
"Register should be live if it's causing an anti-dependence!");
if (RC == reinterpret_cast<TargetRegisterClass *>(-1))
AntiDepReg = 0;