forked from OSchip/llvm-project
Itanium ABI: Write a character instead of a string literal
No functional change intended. llvm-svn: 229726
This commit is contained in:
parent
eed9c8bb44
commit
a16d4707bc
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue