diff options
| author | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-05-27 22:44:06 +0000 |
|---|---|---|
| committer | Duncan P. N. Exon Smith <dexonsmith@apple.com> | 2015-05-27 22:44:06 +0000 |
| commit | 88a8fc544848278660de7cfa2d39c4762918267c (patch) | |
| tree | aefe7ad72fac82a5eb0e450915039db9ffa8d5eb /llvm/lib/CodeGen/AsmPrinter/DIEHash.h | |
| parent | 825a7681db958ffeae039a2a82f0cbe5f497efac (diff) | |
| download | bcm5719-llvm-88a8fc544848278660de7cfa2d39c4762918267c.tar.gz bcm5719-llvm-88a8fc544848278660de7cfa2d39c4762918267c.zip | |
AsmPrinter: Stop exposing underlying DIEValue list, NFC
Change the `DIE` API to hide the implementation of the list of
`DIEValue`s.
llvm-svn: 238369
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DIEHash.h')
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DIEHash.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DIEHash.h b/llvm/lib/CodeGen/AsmPrinter/DIEHash.h index f47cd53cb30..1850e042f92 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DIEHash.h +++ b/llvm/lib/CodeGen/AsmPrinter/DIEHash.h @@ -128,7 +128,7 @@ private: /// \brief Hashes the data in a block like DIEValue, e.g. DW_FORM_block or /// DW_FORM_exprloc. - void hashBlockData(const SmallVectorImpl<DIEValue> &Values); + void hashBlockData(const DIE::value_range &Values); /// \brief Hashes the contents pointed to in the .debug_loc section. void hashLocList(const DIELocList &LocList); |

