[PATCH] D104211: [Polly][Isl] Replacing isl method `to_str()` with `stringFromIslObj()`. NFC.

Riccardo Mori via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Jun 14 10:45:10 PDT 2021


patacca updated this revision to Diff 351923.
patacca added a comment.

Removing useless function declaration and rebasing to main


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D104211

Files:
  polly/include/polly/Support/GICHelper.h


Index: polly/include/polly/Support/GICHelper.h
===================================================================
--- polly/include/polly/Support/GICHelper.h
+++ polly/include/polly/Support/GICHelper.h
@@ -152,9 +152,7 @@
 //@{
 #define ISL_CPP_OBJECT_TO_STRING(name)                                         \
   inline std::string stringFromIslObj(const name &Obj,                         \
-                                      std::string DefaultValue = "");          \
-  inline std::string stringFromIslObj(const name &Obj,                         \
-                                      std::string DefaultValue) {              \
+                                      std::string DefaultValue = "") {         \
     return stringFromIslObj(Obj.get(), DefaultValue);                          \
   }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104211.351923.patch
Type: text/x-patch
Size: 810 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210614/5a7b926e/attachment.bin>


More information about the llvm-commits mailing list