diff options
| author | Tobias Grosser <tobias@grosser.es> | 2018-04-29 00:28:14 +0000 |
|---|---|---|
| committer | Tobias Grosser <tobias@grosser.es> | 2018-04-29 00:28:14 +0000 |
| commit | 72018edae7ffdfea01d1ca288954a22feee38f31 (patch) | |
| tree | 9e691dfc37413ac210bb91bc7c34e84db6c92b37 | |
| parent | 0c3984ef314d921fb93ef48d719def86a0f4bb4b (diff) | |
| download | bcm5719-llvm-72018edae7ffdfea01d1ca288954a22feee38f31.tar.gz bcm5719-llvm-72018edae7ffdfea01d1ca288954a22feee38f31.zip | |
Fix one unit test
llvm-svn: 331125
| -rw-r--r-- | polly/unittests/DeLICM/DeLICMTest.cpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/polly/unittests/DeLICM/DeLICMTest.cpp b/polly/unittests/DeLICM/DeLICMTest.cpp index 0a4e19c6881..e33da1e60a1 100644 --- a/polly/unittests/DeLICM/DeLICMTest.cpp +++ b/polly/unittests/DeLICM/DeLICMTest.cpp @@ -193,12 +193,9 @@ bool checkIsConflictingNonsymmetric(KnowledgeStr Existing, 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)); } |

