Silence GCC's -Wparentheses warning

No functionality change intended.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@224833 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
David Majnemer 2014-12-25 10:03:23 +00:00
parent 773f64844d
commit b582949103

View File

@ -1817,7 +1817,7 @@ JoinVals::analyzeValue(unsigned ValNo, JoinVals &Other) {
// not important.
if (Redef) {
V.RedefVNI = LR.Query(VNI->def).valueIn();
assert(TrackSubRegLiveness || V.RedefVNI &&
assert((TrackSubRegLiveness || V.RedefVNI) &&
"Instruction is reading nonexistent value");
if (V.RedefVNI != nullptr) {
computeAssignment(V.RedefVNI->id, Other);