Fix the build with GCC 4.8 after r356783

llvm-svn: 356875
This commit is contained in:
Hans Wennborg 2019-03-25 09:27:42 +00:00
parent 57949eb677
commit 5519cb2d94
1 changed files with 1 additions and 1 deletions

View File

@ -665,7 +665,7 @@ template <class AliasAnalysisType> class ClobberWalker {
struct generic_def_path_iterator
: public iterator_facade_base<generic_def_path_iterator<T, Walker>,
std::forward_iterator_tag, T *> {
generic_def_path_iterator() = default;
generic_def_path_iterator() {}
generic_def_path_iterator(Walker *W, ListIndex N) : W(W), N(N) {}
T &operator*() const { return curNode(); }