diff options
author | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-07-12 09:45:12 +0000 |
---|---|---|
committer | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2019-07-12 09:45:12 +0000 |
commit | 0739ccd3b588a6f2562bdc5a8f8847a49356394e (patch) | |
tree | 29ee68538b3ada08ad9dcf774d33a2ceb92121a4 /llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | |
parent | 210a9b6aee625f5924281a8ee36036396fff1450 (diff) | |
download | bcm5719-llvm-0739ccd3b588a6f2562bdc5a8f8847a49356394e.tar.gz bcm5719-llvm-0739ccd3b588a6f2562bdc5a8f8847a49356394e.zip |
Revert "[DwarfDebug] Dump call site debug info"
A build failure was found on the SystemZ platform.
This reverts commit 9e7e73578e54cd22b3c7af4b54274d743b6607cc.
llvm-svn: 365886
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h index 1c9de983ea1..3ac474e2bdd 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.h @@ -254,22 +254,6 @@ public: } }; -/// Used for tracking debug info about call site parameters. -class DbgCallSiteParam { -private: - unsigned Register; - DbgValueLoc Value; -public: - DbgCallSiteParam(unsigned Reg, DbgValueLoc Val) - : Register(Reg), Value(Val) {} - - unsigned getRegister() { return Register; } - DbgValueLoc getValue() { return Value; } -}; - -/// Collection used for storing debug call site parameters. -using ParamSet = SmallVector<DbgCallSiteParam, 4>; - /// Helper used to pair up a symbol and its DWARF compile unit. struct SymbolCU { SymbolCU(DwarfCompileUnit *CU, const MCSymbol *Sym) : Sym(Sym), CU(CU) {} |