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)) {
|
if (const DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(E)) {
|
||||||
const ValueDecl *D = DRE->getDecl();
|
const ValueDecl *D = DRE->getDecl();
|
||||||
if (isa<VarDecl>(D) || isa<FunctionDecl>(D)) {
|
if (isa<VarDecl>(D) || isa<FunctionDecl>(D)) {
|
||||||
Out << "L";
|
Out << 'L';
|
||||||
mangle(D);
|
mangle(D);
|
||||||
Out << 'E';
|
Out << 'E';
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue