[Demangler] Remove a failing assert introduced in r303718

git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@303806 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/src/cxa_demangle.cpp b/src/cxa_demangle.cpp
index fd484a4..d8734fb 100644
--- a/src/cxa_demangle.cpp
+++ b/src/cxa_demangle.cpp
@@ -15,7 +15,6 @@
 #include <algorithm>
 #include <string>
 #include <numeric>
-#include <cassert>
 #include <cstdlib>
 #include <cstring>
 #include <cctype>
@@ -3034,8 +3033,7 @@
                     long k1 = static_cast<long>(db.names.size());
                     if (t1 == t0)
                         break;
-                    assert(k0 <= k1 && "parse_type() mutated the name stack");
-                    if (k1 == k0)
+                    if (k0 >= k1)
                         return first;
                     // If the call to parse_type above found a pack expansion
                     // substitution, then multiple names could have been