diff options
Diffstat (limited to 'llvm/lib/Demangle/MicrosoftDemangleNodes.cpp')
-rw-r--r-- | llvm/lib/Demangle/MicrosoftDemangleNodes.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp b/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp index 9610981..9d1aa1a 100644 --- a/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp +++ b/llvm/lib/Demangle/MicrosoftDemangleNodes.cpp @@ -565,9 +565,10 @@ void VariableSymbolNode::output(OutputStream &OS, OutputFlags Flags) const { Type->outputPost(OS, Flags); } -void CustomNode::output(OutputStream &OS, OutputFlags Flags) const { - OS << Name; +void CustomTypeNode::outputPre(OutputStream &OS, OutputFlags Flags) const { + Identifier->output(OS, Flags); } +void CustomTypeNode::outputPost(OutputStream &OS, OutputFlags Flags) const {} void QualifiedNameNode::output(OutputStream &OS, OutputFlags Flags) const { Components->output(OS, Flags, "::"); |