[PATCH] D35237: [ScopInfo] Simplify new access functions under domain context
Siddharth via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 12 06:45:28 PDT 2017
bollu added inline comments.
================
Comment at: lib/Analysis/ScopInfo.cpp:1240
+ NewAccess = isl_map_gist_domain(NewAccess, getStatement()->getDomain());
NewAccessRelation = NewAccess;
}
----------------
can this be re-written as:
```lang=cpp
NewAccessRelation = isl_map_gist_domain(NewAccess, getStatement()->getDomain())
```
https://reviews.llvm.org/D35237
More information about the llvm-commits
mailing list