[polly] r230336 - [FIX] Silence warning
Johannes Doerfert
doerfert at cs.uni-saarland.de
Tue Feb 24 08:00:41 PST 2015
Author: jdoerfert
Date: Tue Feb 24 10:00:41 2015
New Revision: 230336
URL: http://llvm.org/viewvc/llvm-project?rev=230336&view=rev
Log:
[FIX] Silence warning
Modified:
polly/trunk/lib/Support/ScopHelper.cpp
Modified: polly/trunk/lib/Support/ScopHelper.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/lib/Support/ScopHelper.cpp?rev=230336&r1=230335&r2=230336&view=diff
==============================================================================
--- polly/trunk/lib/Support/ScopHelper.cpp (original)
+++ polly/trunk/lib/Support/ScopHelper.cpp Tue Feb 24 10:00:41 2015
@@ -170,6 +170,7 @@ BasicBlock *polly::simplifyRegion(Scop *
// Create single exit edge if the region has multiple exit edges.
if (!R->getExitingBlock()) {
BasicBlock *NewExiting = createSingleExitEdge(R, P);
+ (void) NewExiting;
assert(NewExiting == R->getExitingBlock() &&
"Did not create a single exiting block");
}
More information about the llvm-commits
mailing list