forked from OSchip/llvm-project
Updated the demangler to take the fix for a crasher.
<rdar://problem/12293231> llvm-svn: 163864
This commit is contained in:
parent
21530f7c4e
commit
5527442d11
|
@ -6914,6 +6914,10 @@ __demangle_tree::__parse_expr_primary(const char* first, const char* last)
|
|||
first = t+1;
|
||||
}
|
||||
break;
|
||||
case 'T':
|
||||
// Invalid mangled name per
|
||||
// http://sourcerytools.com/pipermail/cxx-abi-dev/2011-August/002422.html
|
||||
break;
|
||||
default:
|
||||
{
|
||||
// might be named type
|
||||
|
|
Loading…
Reference in New Issue