commit | ee8a7200511791158e8c84fa5fc9324a9d23b361 | [log] [tgz] |
---|---|---|
author | Alexandre Ganea <alexandre.ganea@ubisoft.com> | Tue Jul 31 19:15:50 2018 +0000 |
committer | Alexandre Ganea <alexandre.ganea@ubisoft.com> | Tue Jul 31 19:15:50 2018 +0000 |
tree | 5bb53ef3dfbc91a8249fdaf076d123751d77a052 | |
parent | 9ced1e0d80d432034221c3ff36fdf01a8bcf1aca [diff] [blame] |
[CodeView] Minimal support for S_UNAMESPACE records Differential Revision: https://reviews.llvm.org/D50007 llvm-svn: 338417
diff --git a/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp b/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp index b454ab3..f4e38a3 100644 --- a/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp +++ b/llvm/tools/llvm-pdbutil/MinimalSymbolDumper.cpp
@@ -760,3 +760,9 @@ P.formatLine("original type = {0}", UDT.Type); return Error::success(); } + +Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, + UsingNamespaceSym &UN) { + P.format(" `{0}`", UN.Name); + return Error::success(); +}