Add parentheses to silence warning.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265516 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Richard Trieu 2016-04-06 04:22:00 +00:00
parent ce42332d64
commit 100a00cda0

View File

@ -1317,7 +1317,8 @@ public:
Instruction *NewI = New;
assert(OldI != NewI && "Disallowed at construction?!");
assert(!IsDeoptimize || !New && "Deoptimize instrinsics are not replaced!");
assert((!IsDeoptimize || !New) &&
"Deoptimize instrinsics are not replaced!");
Old = nullptr;
New = nullptr;