[Lldb-commits] [lldb] r163864 - /lldb/trunk/source/Core/cxa_demangle.cpp
Sean Callanan
scallanan at apple.com
Thu Sep 13 17:52:49 PDT 2012
Author: spyffe
Date: Thu Sep 13 19:52:49 2012
New Revision: 163864
URL: http://llvm.org/viewvc/llvm-project?rev=163864&view=rev
Log:
Updated the demangler to take the fix for a crasher.
<rdar://problem/12293231>
Modified:
lldb/trunk/source/Core/cxa_demangle.cpp
Modified: lldb/trunk/source/Core/cxa_demangle.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/cxa_demangle.cpp?rev=163864&r1=163863&r2=163864&view=diff
==============================================================================
--- lldb/trunk/source/Core/cxa_demangle.cpp (original)
+++ lldb/trunk/source/Core/cxa_demangle.cpp Thu Sep 13 19:52:49 2012
@@ -6914,6 +6914,10 @@
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
More information about the lldb-commits
mailing list