IslNodeBuilder: Add function to export BlockGenerator

llvm-svn: 246286
This commit is contained in:
Tobias Grosser 2015-08-28 08:23:38 +00:00
parent b79a67df78
commit 3f2783b254
1 changed files with 5 additions and 0 deletions

View File

@ -48,6 +48,11 @@ public:
IslExprBuilder &getExprBuilder() { return ExprBuilder; }
/// @brief Get the associated block generator.
///
/// @return A referecne to the associated block generator.
BlockGenerator &getBlockGenerator() { return BlockGen; }
private:
Scop &S;
PollyIRBuilder &Builder;