Reorganization: Move the Spiller out of VirtRegMap.cpp into its own files. No (inten...
[oota-llvm.git] / lib / CodeGen / VirtRegMap.h
index 8b494a7c617bc3de183a0b0bc31716b9b59b77dd..7627d677db6e8ef74f55a46e8e38354dc8489e04 100644 (file)
@@ -430,19 +430,6 @@ namespace llvm {
     VRM.print(OS);
     return OS;
   }
-
-  /// Spiller interface: Implementations of this interface assign spilled
-  /// virtual registers to stack slots, rewriting the code.
-  struct Spiller {
-    virtual ~Spiller();
-    virtual bool runOnMachineFunction(MachineFunction &MF,
-                                      VirtRegMap &VRM) = 0;
-  };
-
-  /// createSpiller - Create an return a spiller object, as specified on the
-  /// command line.
-  Spiller* createSpiller();
-
 } // End llvm namespace
 
 #endif