From: Hans Wennborg Date: Mon, 25 Mar 2019 09:27:42 +0000 (+0000) Subject: Fix the build with GCC 4.8 after r356783 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6e821f01513dd49ed1668b65d10b2dbd07801d39;p=llvm Fix the build with GCC 4.8 after r356783 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@356875 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/MemorySSA.cpp b/lib/Analysis/MemorySSA.cpp index ea68faa7fc7..5630a01824d 100644 --- a/lib/Analysis/MemorySSA.cpp +++ b/lib/Analysis/MemorySSA.cpp @@ -665,7 +665,7 @@ template class ClobberWalker { struct generic_def_path_iterator : public iterator_facade_base, 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(); }