From cbb5c73942b62e693d9233907720138dd4f40f26 Mon Sep 17 00:00:00 2001 From: David Blaikie Date: Wed, 14 Aug 2013 22:23:05 +0000 Subject: DebugInfo: Prefer references over pointers, pass by const reference for a type that will grow in the future git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188422 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/AsmPrinter/DIEHash.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/CodeGen/AsmPrinter/DIEHash.h') diff --git a/lib/CodeGen/AsmPrinter/DIEHash.h b/lib/CodeGen/AsmPrinter/DIEHash.h index 0c7d6e25d5..f53529c54f 100644 --- a/lib/CodeGen/AsmPrinter/DIEHash.h +++ b/lib/CodeGen/AsmPrinter/DIEHash.h @@ -59,10 +59,10 @@ private: /// \brief Collects the attributes of DIE \param Die into the \param Attrs /// structure. - void collectAttributes(DIE *Die, DIEAttrs *Attrs); + void collectAttributes(DIE *Die, DIEAttrs &Attrs); /// \brief Hashes the attributes in \param Attrs in order. - void hashAttributes(DIEAttrs Attrs); + void hashAttributes(const DIEAttrs &Attrs); /// \brief Hashes an individual attribute. void hashAttribute(AttrEntry Attr); -- cgit v1.2.3