Skip to content

Commit

Permalink
Fix the build with GCC 4.8 after r356783
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@356875 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
zmodem authored and kzhuravl committed Mar 30, 2019
1 parent 25e3c7c commit d133eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Analysis/MemorySSA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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(); }
Expand Down

0 comments on commit d133eca

Please sign in to comment.