[PATCH] D106059: [Polly][Isl] Stop generating isl::union_{set,map} from isl::space. NFC

Michael Kruse via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 15 20:05:39 PDT 2021


Meinersbur added inline comments.


================
Comment at: polly/lib/Exchange/JSONExporter.cpp:324
 
-  auto ScheduleMap = isl::union_map::empty(S.getParamSpace());
+  auto ScheduleMap = isl::union_map::empty(S.getContext().ctx());
   for (ScopStmt &Stmt : S) {
----------------



================
Comment at: polly/lib/External/isl/include/isl/isl-noexceptions.h:8
 
+// clang-format off
+
----------------
When running `ninja polly-update-format` this file should have been ignored. Are you calling `clang-format` manually?

In any case, adding this annotation by the generator is fine.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D106059/new/

https://reviews.llvm.org/D106059



More information about the llvm-commits mailing list