[Lldb-commits] [PATCH] D73946: [lldb] Fix another instance where we pass a nullptr as TypeSourceInfo to NonTypeTemplateParmDecl::Create
Raphael Isemann via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Tue Feb 4 01:26:38 PST 2020
teemperor created this revision.
teemperor added reviewers: shafik, vsk.
Herald added subscribers: lldb-commits, JDevlieghere, kristof.beyls.
Herald added a project: LLDB.
Follow up to an issue pointed out in the review of D73808 <https://reviews.llvm.org/D73808>.
Repository:
rLLDB LLDB
https://reviews.llvm.org/D73946
Files:
lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
Index: lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
===================================================================
--- lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
+++ lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp
@@ -1295,11 +1295,13 @@
if (!template_param_infos.packed_args->args.empty() &&
IsValueParam(template_param_infos.packed_args->args[0])) {
+ QualType template_param_type =
+ template_param_infos.args[0].getIntegralType();
template_param_decls.push_back(NonTypeTemplateParmDecl::Create(
ast, decl_context, SourceLocation(), SourceLocation(), depth,
- num_template_params, identifier_info,
- template_param_infos.packed_args->args[0].getIntegralType(),
- parameter_pack_true, nullptr));
+ num_template_params, identifier_info, template_param_type,
+ parameter_pack_true,
+ ast.getTrivialTypeSourceInfo(template_param_type)));
} else {
template_param_decls.push_back(TemplateTypeParmDecl::Create(
ast, decl_context, SourceLocation(), SourceLocation(), depth,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D73946.242271.patch
Type: text/x-patch
Size: 1134 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200204/a3d0c68d/attachment.bin>
More information about the lldb-commits
mailing list