[llvm-commits] CVS: llvm/lib/Target/SparcV9/MachineFunctionInfo.h

Chris Lattner lattner at cs.uiuc.edu
Mon Aug 16 15:37:28 PDT 2004



Changes in directory llvm/lib/Target/SparcV9:

MachineFunctionInfo.h updated: 1.6 -> 1.7
---
Log message:

Hacks to make the MachineFunction class be able to delete the MFI object
without knowing anything about it.


---
Diffs of the changes:  (+2 -1)

Index: llvm/lib/Target/SparcV9/MachineFunctionInfo.h
diff -u llvm/lib/Target/SparcV9/MachineFunctionInfo.h:1.6 llvm/lib/Target/SparcV9/MachineFunctionInfo.h:1.7
--- llvm/lib/Target/SparcV9/MachineFunctionInfo.h:1.6	Mon Aug 16 16:54:29 2004
+++ llvm/lib/Target/SparcV9/MachineFunctionInfo.h	Mon Aug 16 17:37:18 2004
@@ -19,6 +19,7 @@
 #define MACHINEFUNCTIONINFO_H
 
 #include "MachineCodeForInstruction.h"
+#include "llvm/CodeGen/MachineFunction.h"
 #include "Support/HashExtras.h"
 #include "Support/hash_set"
 
@@ -28,7 +29,7 @@
 class Constant;
 class Type;
 
-class MachineFunctionInfo {
+class MachineFunctionInfo : public MachineFunctionInfoBase {
   hash_set<const Constant*> constantsForConstPool;
   hash_map<const Value*, int> offsets;
 






More information about the llvm-commits mailing list