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:
parent
2c391c5d74
commit
575c7921a1
@ -166,8 +166,8 @@ 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 "
|
||||
assert((&L == CurrentL || CurrentL->contains(&L)) &&
|
||||
"Cannot delete a loop outside of the "
|
||||
"subloop tree currently being processed.");
|
||||
if (&L == CurrentL)
|
||||
SkipCurrentLoop = true;
|
||||
|
Loading…
Reference in New Issue
Block a user