[polly] r331125 - Fix one unit test

Tobias Grosser via llvm-commits llvm-commits at lists.llvm.org
Sat Apr 28 17:28:14 PDT 2018


Author: grosser
Date: Sat Apr 28 17:28:14 2018
New Revision: 331125

URL: http://llvm.org/viewvc/llvm-project?rev=331125&view=rev
Log:
Fix one unit test

Modified:
    polly/trunk/unittests/DeLICM/DeLICMTest.cpp

Modified: polly/trunk/unittests/DeLICM/DeLICMTest.cpp
URL: http://llvm.org/viewvc/llvm-project/polly/trunk/unittests/DeLICM/DeLICMTest.cpp?rev=331125&r1=331124&r2=331125&view=diff
==============================================================================
--- polly/trunk/unittests/DeLICM/DeLICMTest.cpp (original)
+++ polly/trunk/unittests/DeLICM/DeLICMTest.cpp Sat Apr 28 17:28:14 2018
@@ -193,12 +193,9 @@ bool checkIsConflictingNonsymmetric(Know
   auto ProposedWritten = parseSetOrNull(Ctx.get(), Proposed.WrittenStr);
 
   return checkIsConflictingNonsymmetricCommon(
-      Ctx.get(),
-      isl::union_map::from_domain(ExistingOccupied),
-      ExistingUnused,
+      Ctx.get(), isl::union_map::from_domain(ExistingOccupied), ExistingUnused,
       isl::union_map::from_domain(ExistingWritten),
-      isl::union_map::(ProposedOccupied),
-      ProposedUnused,
+      isl::union_map::from_domain(ProposedOccupied), ProposedUnused,
       isl::union_map::from_domain(ProposedWritten));
 }
 




More information about the llvm-commits mailing list