From: Devang Patel Date: Fri, 3 Dec 2010 23:29:30 +0000 (+0000) Subject: Ignore '+' while creating mdnode name from ObjC symbol name. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=ddb85acdbe2fa3a4ced01e8426d96b8fe9e22128;p=oota-llvm.git Ignore '+' while creating mdnode name from ObjC symbol name. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@120853 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/DebugInfo.cpp b/lib/Analysis/DebugInfo.cpp index 5df381f2ec3..aacbc11e4d7 100644 --- a/lib/Analysis/DebugInfo.cpp +++ b/lib/Analysis/DebugInfo.cpp @@ -1161,7 +1161,7 @@ DIFactory::CreateGlobalVariable(DIDescriptor Context, StringRef Name, static void fixupObjcLikeName(std::string &Str) { for (size_t i = 0, e = Str.size(); i < e; ++i) { char C = Str[i]; - if (C == '[' || C == ']' || C == ' ' || C == ':') + if (C == '[' || C == ']' || C == ' ' || C == ':' || C == '+') Str[i] = '.'; } }