diff options
author | David Majnemer <david.majnemer@gmail.com> | 2016-07-07 04:43:07 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2016-07-07 04:43:07 +0000 |
commit | 6fbeee307e7f3a25d365f74d38f61ff485ac88be (patch) | |
tree | 39746f03910268ab8b2809f4d2a1cd2047f0410f /clang/lib/CodeGen | |
parent | 00639bc5296194636a37156a90f8f9edb2b0dda8 (diff) | |
download | bcm5719-llvm-6fbeee307e7f3a25d365f74d38f61ff485ac88be.tar.gz bcm5719-llvm-6fbeee307e7f3a25d365f74d38f61ff485ac88be.zip |
[AST] Use ArrayRef in more interfaces
ArrayRef is a little better than passing around a pointer/length
pair.
No functional change is intended.
llvm-svn: 274732
Diffstat (limited to 'clang/lib/CodeGen')
-rw-r--r-- | clang/lib/CodeGen/CGDebugInfo.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/clang/lib/CodeGen/CGDebugInfo.cpp b/clang/lib/CodeGen/CGDebugInfo.cpp index 5e829cc1229..c3e1c5bf2bf 100644 --- a/clang/lib/CodeGen/CGDebugInfo.cpp +++ b/clang/lib/CodeGen/CGDebugInfo.cpp @@ -209,9 +209,7 @@ StringRef CGDebugInfo::getFunctionName(const FunctionDecl *FD) { // Add any template specialization args. if (Info) { const TemplateArgumentList *TArgs = Info->TemplateArguments; - const TemplateArgument *Args = TArgs->data(); - unsigned NumArgs = TArgs->size(); - TemplateSpecializationType::PrintTemplateArgumentList(OS, Args, NumArgs, + TemplateSpecializationType::PrintTemplateArgumentList(OS, TArgs->asArray(), Policy); } @@ -845,7 +843,7 @@ llvm::DIType *CGDebugInfo::CreateType(const TemplateSpecializationType *Ty, /*qualified*/ false); TemplateSpecializationType::PrintTemplateArgumentList( - OS, Ty->getArgs(), Ty->getNumArgs(), + OS, Ty->template_arguments(), CGM.getContext().getPrintingPolicy()); TypeAliasDecl *AliasDecl = cast<TypeAliasTemplateDecl>( |