diff options
author | Eric Christopher <echristo@gmail.com> | 2013-10-04 19:40:33 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-10-04 19:40:33 +0000 |
commit | c19d6f096c0ffc304adc524df9155a1589e7c416 (patch) | |
tree | d421750fffcbe6f7c2c07603ee42540823468653 /llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | |
parent | ec2c9b8eba46806d0889ee7bd72167d206aefed8 (diff) | |
download | bcm5719-llvm-c19d6f096c0ffc304adc524df9155a1589e7c416.tar.gz bcm5719-llvm-c19d6f096c0ffc304adc524df9155a1589e7c416.zip |
Temporarily revert r176882 as it needs to be implemented in a different
way for all platforms.
llvm-svn: 191975
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h index 0c0916538dd..e997dcc9162 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfCompileUnit.h @@ -87,9 +87,6 @@ class CompileUnit { /// corresponds to the MDNode mapped with the subprogram DIE. DenseMap<DIE *, const MDNode *> ContainingTypeMap; - /// Offset of the CUDie from beginning of debug info section. - unsigned DebugInfoOffset; - /// getLowerBoundDefault - Return the default lower bound for an array. If the /// DWARF version doesn't handle the language, return -1. int64_t getDefaultLowerBound() const; @@ -104,7 +101,6 @@ public: uint16_t getLanguage() const { return DICompileUnit(Node).getLanguage(); } const MDNode *getNode() const { return Node; } DIE *getCUDie() const { return CUDie.get(); } - unsigned getDebugInfoOffset() const { return DebugInfoOffset; } const StringMap<DIE *> &getGlobalNames() const { return GlobalNames; } const StringMap<DIE *> &getGlobalTypes() const { return GlobalTypes; } @@ -122,7 +118,6 @@ public: return AccelTypes; } - void setDebugInfoOffset(unsigned DbgInfoOff) { DebugInfoOffset = DbgInfoOff; } /// hasContent - Return true if this compile unit has something to write out. /// bool hasContent() const { return !CUDie->getChildren().empty(); } |