diff options
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 65e4fa99a0b..6cc792b3731 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -402,9 +402,6 @@ class DwarfDebug { // Whether or not we're emitting info for older versions of gdb on darwin. bool IsDarwinGDBCompat; - // Whether or not we use ref_addr in the generated DWARF. - unsigned UseRefAddr; - // DWARF5 Experimental Options bool HasDwarfAccelTables; bool HasSplitDwarf; @@ -604,9 +601,6 @@ private: /// \brief Return Label immediately following the instruction. MCSymbol *getLabelAfterInsn(const MachineInstr *MI); - /// \brief Search all compile units to find the SP DIE for the given MDNode. - DIE *findSPDieInAllCUs(const MDNode *N); - public: //===--------------------------------------------------------------------===// // Main entry points. @@ -646,9 +640,6 @@ public: /// output to the limitations of darwin gdb. bool useDarwinGDBCompat() { return IsDarwinGDBCompat; } - bool getUseRefAddr() { return UseRefAddr; } - void setUseRefAddr(bool RefAddr) { UseRefAddr = RefAddr; } - // Experimental DWARF5 features. /// \brief Returns whether or not to emit tables that dwarf consumers can |