diff options
Diffstat (limited to 'contrib/llvm/lib/CodeGen/Spiller.h')
-rw-r--r-- | contrib/llvm/lib/CodeGen/Spiller.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/llvm/lib/CodeGen/Spiller.h b/contrib/llvm/lib/CodeGen/Spiller.h index 08f99ec..61ee508 100644 --- a/contrib/llvm/lib/CodeGen/Spiller.h +++ b/contrib/llvm/lib/CodeGen/Spiller.h @@ -16,6 +16,7 @@ namespace llvm { class MachineFunction; class MachineFunctionPass; class VirtRegMap; + class LiveIntervals; /// Spiller interface. /// @@ -28,7 +29,7 @@ namespace llvm { /// spill - Spill the LRE.getParent() live interval. virtual void spill(LiveRangeEdit &LRE) = 0; - + virtual void postOptimization(){}; }; /// Create and return a spiller that will insert spill code directly instead @@ -36,7 +37,6 @@ namespace llvm { Spiller *createInlineSpiller(MachineFunctionPass &pass, MachineFunction &mf, VirtRegMap &vrm); - } #endif |