1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Pacify a gcc -Wparentheses warning

llvm-svn: 313780
This commit is contained in:
Hans Wennborg 2017-09-20 18:00:02 +00:00
parent 2c391c5d74
commit 575c7921a1

View File

@ -166,9 +166,9 @@ public:
/// the rest of the pass management infrastructure.
void markLoopAsDeleted(Loop &L) {
LAM.clear(L);
assert(&L == CurrentL ||
CurrentL->contains(&L) && "Cannot delete a loop outside of the "
"subloop tree currently being processed.");
assert((&L == CurrentL || CurrentL->contains(&L)) &&
"Cannot delete a loop outside of the "
"subloop tree currently being processed.");
if (&L == CurrentL)
SkipCurrentLoop = true;
}