diff options
author | Evan Cheng <evan.cheng@apple.com> | 2008-02-05 00:25:13 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2008-02-05 00:25:13 +0000 |
commit | eefc0a24108bd179360c696f9865b51ff166d3fe (patch) | |
tree | 1569e9443aa43d374ae4fe2a9cb1f028d7cd1ee2 | |
parent | b53713f26b30f70a89b1af7ffba8a375c99f1811 (diff) | |
download | bcm5719-llvm-eefc0a24108bd179360c696f9865b51ff166d3fe.tar.gz bcm5719-llvm-eefc0a24108bd179360c696f9865b51ff166d3fe.zip |
Unbreak teh build.
llvm-svn: 46729
-rw-r--r-- | llvm/include/llvm/CodeGen/AsmPrinter.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/include/llvm/CodeGen/AsmPrinter.h b/llvm/include/llvm/CodeGen/AsmPrinter.h index bbe650b0c2f..6607afe823a 100644 --- a/llvm/include/llvm/CodeGen/AsmPrinter.h +++ b/llvm/include/llvm/CodeGen/AsmPrinter.h @@ -27,6 +27,7 @@ namespace llvm { class GlobalAlias; class MachineConstantPoolEntry; class MachineConstantPoolValue; + class MachineModuleInfo; class Mangler; class TargetAsmInfo; class Type; @@ -43,6 +44,11 @@ namespace llvm { /// 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; |