diff options
author | Tobias Grosser <tobias@grosser.es> | 2015-08-28 08:30:52 +0000 |
---|---|---|
committer | Tobias Grosser <tobias@grosser.es> | 2015-08-28 08:30:52 +0000 |
commit | 6dc4441884aa88befccce1289d67daf284327c1f (patch) | |
tree | 0560248143c01cfe63d3556d025165dc18996ea2 | |
parent | 3f2783b2544a8118e003bc2d8e342c9d878011fd (diff) | |
download | bcm5719-llvm-6dc4441884aa88befccce1289d67daf284327c1f.tar.gz bcm5719-llvm-6dc4441884aa88befccce1289d67daf284327c1f.zip |
IslNodeBuilder: Make functionality available to subclasses
llvm-svn: 246287
-rw-r--r-- | polly/include/polly/CodeGen/IslNodeBuilder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/polly/include/polly/CodeGen/IslNodeBuilder.h b/polly/include/polly/CodeGen/IslNodeBuilder.h index f9624ac8aa8..70487000dff 100644 --- a/polly/include/polly/CodeGen/IslNodeBuilder.h +++ b/polly/include/polly/CodeGen/IslNodeBuilder.h @@ -53,7 +53,7 @@ public: /// @return A referecne to the associated block generator. BlockGenerator &getBlockGenerator() { return BlockGen; } -private: +protected: Scop &S; PollyIRBuilder &Builder; ScopAnnotator &Annotator; |