diff options
author | Eric Christopher <echristo@gmail.com> | 2014-02-16 08:46:55 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2014-02-16 08:46:55 +0000 |
commit | 4a74104933feab37d8ca6b55bcd14d5c2b7f90d3 (patch) | |
tree | c9351340a5fadae92f486ef9b4cf726529eda690 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 4f6428030dd98cdbc10632ed67ddc39055380ece (diff) | |
download | bcm5719-llvm-4a74104933feab37d8ca6b55bcd14d5c2b7f90d3.tar.gz bcm5719-llvm-4a74104933feab37d8ca6b55bcd14d5c2b7f90d3.zip |
Add a DIELoc class to cover the DW_FORM_exprloc set of expressions
alongside DIEBlock and replace uses accordingly. Use DW_FORM_exprloc
in DWARF4 and later code. Update testcases.
Adding a DIELoc instead of using extra forms inside DIEBlock so
that we can keep location expressions separate from other uses. No
direct use at the moment, however, it's not a lot of code and
using a separately named class keeps it somewhat more obvious
what's going on in various locations.
llvm-svn: 201481
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index c1d78587121..def43b9e094 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -43,7 +43,7 @@ class MCAsmInfo; class MCObjectFileInfo; class DIEAbbrev; class DIE; -class DIEBlock; +class DIELoc; class DIEEntry; //===----------------------------------------------------------------------===// |