From 92e94ed8c66b067905d77f2167dd9432d8e804b5 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Sat, 16 Jan 2010 16:14:55 +0000 Subject: [PATCH] Revive dead assert. llvm-svn: 93638 --- include/llvm/Support/CFG.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/CFG.h b/include/llvm/Support/CFG.h index 90b95bf7cfd..3875f0b4a0f 100644 --- a/include/llvm/Support/CFG.h +++ b/include/llvm/Support/CFG.h @@ -149,8 +149,8 @@ public: } inline bool operator>(const _Self& x) const { - return idx > x.idx; assert(Term == x.Term && "Cannot compare iterators of different blocks!"); + return idx > x.idx; } inline _Self& operator+=(int Right) {