From 5554a1de08bd84b004c964d30b318d866e212fcb Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 7 Oct 2002 16:53:22 +0000 Subject: [PATCH] Implement operator= for SuccIterators git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4055 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/CFG.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/llvm/Support/CFG.h b/include/llvm/Support/CFG.h index e38295ce8b7..0e48ef506ad 100644 --- a/include/llvm/Support/CFG.h +++ b/include/llvm/Support/CFG.h @@ -100,6 +100,11 @@ public: : Term(T), idx(Term->getNumSuccessors()) { assert(T && "getTerminator returned null!"); } + + inline const _Self &operator=(const _Self &I) { + assert(Term == I.Term &&"Cannot assign iterators to two different blocks!"); + idx = I.idx; + } inline bool operator==(const _Self& x) const { return idx == x.idx; } inline bool operator!=(const _Self& x) const { return !operator==(x); } -- 2.34.1