summaryrefslogtreecommitdiffstats
path: root/clang/lib/Sema/SemaTemplateInstantiate.cpp
diff options
context:
space:
mode:
authorLubos Lunak <l.lunak@centrum.cz>2019-05-12 10:39:21 +0000
committerLubos Lunak <l.lunak@centrum.cz>2019-05-12 10:39:21 +0000
commitab8cde446b51cd7dbe9f8aa0c0a392180f6a6e2a (patch)
treee9873640ec4241f2c091783f8c49a8fb9874535a /clang/lib/Sema/SemaTemplateInstantiate.cpp
parentdebad6460b63ff2269cca859751a053a9e29d6d4 (diff)
downloadbcm5719-llvm-ab8cde446b51cd7dbe9f8aa0c0a392180f6a6e2a.tar.gz
bcm5719-llvm-ab8cde446b51cd7dbe9f8aa0c0a392180f6a6e2a.zip
make -ftime-trace also print template arguments
Without this, I get e.g. 'PerformPendingInstantiations' -> 'std::fill', now I get 'std::fill<unsigned long *, int>'. Differential Revision: https://reviews.llvm.org/D61822 llvm-svn: 360539
Diffstat (limited to 'clang/lib/Sema/SemaTemplateInstantiate.cpp')
-rw-r--r--clang/lib/Sema/SemaTemplateInstantiate.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/clang/lib/Sema/SemaTemplateInstantiate.cpp b/clang/lib/Sema/SemaTemplateInstantiate.cpp
index af56ff06ac4..edc281cad6e 100644
--- a/clang/lib/Sema/SemaTemplateInstantiate.cpp
+++ b/clang/lib/Sema/SemaTemplateInstantiate.cpp
@@ -2014,7 +2014,11 @@ Sema::InstantiateClass(SourceLocation PointOfInstantiation,
return true;
llvm::TimeTraceScope TimeScope("InstantiateClass", [&]() {
- return Instantiation->getQualifiedNameAsString();
+ std::string Name;
+ llvm::raw_string_ostream OS(Name);
+ Instantiation->getNameForDiagnostic(OS, getPrintingPolicy(),
+ /*Qualified=*/true);
+ return Name;
});
Pattern = PatternDef;
OpenPOWER on IntegriCloud