mirror of
https://github.com/RPCSX/llvm.git
synced 2025-03-02 09:58:06 +00:00
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:
parent
ce42332d64
commit
100a00cda0
@ -1317,7 +1317,8 @@ public:
|
|||||||
Instruction *NewI = New;
|
Instruction *NewI = New;
|
||||||
|
|
||||||
assert(OldI != NewI && "Disallowed at construction?!");
|
assert(OldI != NewI && "Disallowed at construction?!");
|
||||||
assert(!IsDeoptimize || !New && "Deoptimize instrinsics are not replaced!");
|
assert((!IsDeoptimize || !New) &&
|
||||||
|
"Deoptimize instrinsics are not replaced!");
|
||||||
|
|
||||||
Old = nullptr;
|
Old = nullptr;
|
||||||
New = nullptr;
|
New = nullptr;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user