[llvm-commits] [llvm] r46729 - /llvm/trunk/include/llvm/CodeGen/AsmPrinter.h

Evan Cheng evan.cheng at apple.com
Mon Feb 4 16:25:13 PST 2008


Author: evancheng
Date: Mon Feb  4 18:25:13 2008
New Revision: 46729

URL: http://llvm.org/viewvc/llvm-project?rev=46729&view=rev
Log:
Unbreak teh build.

Modified:
    llvm/trunk/include/llvm/CodeGen/AsmPrinter.h

Modified: llvm/trunk/include/llvm/CodeGen/AsmPrinter.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/AsmPrinter.h?rev=46729&r1=46728&r2=46729&view=diff

==============================================================================
--- llvm/trunk/include/llvm/CodeGen/AsmPrinter.h (original)
+++ llvm/trunk/include/llvm/CodeGen/AsmPrinter.h Mon Feb  4 18:25:13 2008
@@ -27,6 +27,7 @@
   class GlobalAlias;
   class MachineConstantPoolEntry;
   class MachineConstantPoolValue;
+  class MachineModuleInfo;
   class Mangler;
   class TargetAsmInfo;
   class Type;
@@ -43,6 +44,11 @@
     ///
     unsigned FunctionNumber;
 
+    /// MachineModuleInfo - This is needed because printDeclare() has to insert
+    /// DebugVariable entries into the dwarf table. This is a short term hack
+    /// that ought be fixed soon.
+    MachineModuleInfo *MMI;
+
   protected:
     // Necessary for external weak linkage support
     std::set<const GlobalValue*> ExtWeakSymbols;





More information about the llvm-commits mailing list