Silence operator precedence warning.

llvm-svn: 150921
This commit is contained in:
Benjamin Kramer 2012-02-19 12:25:07 +00:00
parent 652e0139da
commit c84ded88ea
1 changed files with 1 additions and 1 deletions

View File

@ -1358,7 +1358,7 @@ private:
// Becoming a new entering range.
assert(BR[LI->reg].Dead == 0 && BR[LI->reg].Def == 0 &&
"Bundle shouldn't be re-defining reg mid-range.");
assert(BR[LI->reg].Use == 0 || BR[LI->reg].Use == LR &&
assert((BR[LI->reg].Use == 0 || BR[LI->reg].Use == LR) &&
"Bundle shouldn't have different use range for same reg.");
LR->end = LastUse.getRegSlot();
BR[LI->reg].Use = LR;