diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-09-14 09:30:33 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-09-14 09:30:33 +0000 |
commit | 9a447db9fc8be27411e3fb80bd27d06806d7503d (patch) | |
tree | 5ad3ab7d50e010d2161d1d50e1f4ffcdec79b067 | |
parent | 1b398ae0aeab31b080b806de713266b8be15540f (diff) | |
download | bcm5719-llvm-9a447db9fc8be27411e3fb80bd27d06806d7503d.tar.gz bcm5719-llvm-9a447db9fc8be27411e3fb80bd27d06806d7503d.zip |
Speculative change to try to fix older GCC versions that can't handle
the injected class name of a dependent base class here.
llvm-svn: 163884
-rw-r--r-- | llvm/lib/Transforms/Scalar/SROA.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Scalar/SROA.cpp b/llvm/lib/Transforms/Scalar/SROA.cpp index 9ecefa6199c..b3f83b2248a 100644 --- a/llvm/lib/Transforms/Scalar/SROA.cpp +++ b/llvm/lib/Transforms/Scalar/SROA.cpp @@ -457,7 +457,7 @@ class AllocaPartitioning::PartitionBuilder public: PartitionBuilder(const TargetData &TD, AllocaInst &AI, AllocaPartitioning &P) - : BuilderBase(TD, AI, P) {} + : BuilderBase<PartitionBuilder, bool>(TD, AI, P) {} /// \brief Run the builder over the allocation. bool operator()() { @@ -740,7 +740,7 @@ class AllocaPartitioning::UseBuilder : public BuilderBase<UseBuilder> { public: UseBuilder(const TargetData &TD, AllocaInst &AI, AllocaPartitioning &P) - : BuilderBase(TD, AI, P) {} + : BuilderBase<UseBuilder>(TD, AI, P) {} /// \brief Run the builder over the allocation. void operator()() { |