Itanium ABI: Write a character instead of a string literal

No functional change intended.

llvm-svn: 229726
This commit is contained in:
David Majnemer 2015-02-18 19:08:14 +00:00
parent eed9c8bb44
commit a16d4707bc
1 changed files with 1 additions and 1 deletions

View File

@ -3557,7 +3557,7 @@ void CXXNameMangler::mangleTemplateArg(TemplateArgument A) {
if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
const ValueDecl *D = DRE->getDecl();
if (isa<VarDecl>(D) || isa<FunctionDecl>(D)) {
Out << "L";
Out << 'L';
mangle(D);
Out << 'E';
break;