[llvm] r252401 - Erase unused FunctionDIs variables after r252219.

Yaron Keren via llvm-commits llvm-commits at lists.llvm.org
Sat Nov 7 02:21:33 PST 2015


Author: yrnkrn
Date: Sat Nov  7 04:21:25 2015
New Revision: 252401

URL: http://llvm.org/viewvc/llvm-project?rev=252401&view=rev
Log:
Erase unused FunctionDIs variables after r252219.


Modified:
    llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h
    llvm/trunk/lib/CodeGen/LiveDebugVariables.h

Modified: llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h?rev=252401&r1=252400&r2=252401&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h (original)
+++ llvm/trunk/lib/CodeGen/AsmPrinter/DwarfDebug.h Sat Nov  7 04:21:25 2015
@@ -344,8 +344,6 @@ class DwarfDebug : public AsmPrinterHand
   DwarfAccelTable AccelNamespace;
   DwarfAccelTable AccelTypes;
 
-  DenseMap<const Function *, DISubprogram *> FunctionDIs;
-
   // Identify a debugger for "tuning" the debug info.
   DebuggerKind DebuggerTuning;
 

Modified: llvm/trunk/lib/CodeGen/LiveDebugVariables.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/LiveDebugVariables.h?rev=252401&r1=252400&r2=252401&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/LiveDebugVariables.h (original)
+++ llvm/trunk/lib/CodeGen/LiveDebugVariables.h Sat Nov  7 04:21:25 2015
@@ -33,7 +33,6 @@ class VirtRegMap;
 
 class LLVM_LIBRARY_VISIBILITY LiveDebugVariables : public MachineFunctionPass {
   void *pImpl;
-  DenseMap<const Function *, DISubprogram *> FunctionDIs;
 
 public:
   static char ID; // Pass identification, replacement for typeid




More information about the llvm-commits mailing list