diff options
author | Wei Mi <wmi@google.com> | 2016-04-04 17:45:03 +0000 |
---|---|---|
committer | Wei Mi <wmi@google.com> | 2016-04-04 17:45:03 +0000 |
commit | fb5252cac1bd1feb22e8b30950f3b1c36e01bb44 (patch) | |
tree | 8e1f45d1ace28413bf00a4889e694ab89d84f3fe /llvm/lib/CodeGen/Spiller.h | |
parent | d575edb7801163ada155cebe601bb32eff8401cf (diff) | |
download | bcm5719-llvm-fb5252cac1bd1feb22e8b30950f3b1c36e01bb44.tar.gz bcm5719-llvm-fb5252cac1bd1feb22e8b30950f3b1c36e01bb44.zip |
Revert r265309 and r265312 because they caused some errors I need to investigate.
llvm-svn: 265317
Diffstat (limited to 'llvm/lib/CodeGen/Spiller.h')
-rw-r--r-- | llvm/lib/CodeGen/Spiller.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/Spiller.h b/llvm/lib/CodeGen/Spiller.h index 21037e68230..08f99ec78ad 100644 --- a/llvm/lib/CodeGen/Spiller.h +++ b/llvm/lib/CodeGen/Spiller.h @@ -16,7 +16,6 @@ namespace llvm { class MachineFunction; class MachineFunctionPass; class VirtRegMap; - class LiveIntervals; /// Spiller interface. /// @@ -29,7 +28,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 @@ -37,6 +36,7 @@ namespace llvm { Spiller *createInlineSpiller(MachineFunctionPass &pass, MachineFunction &mf, VirtRegMap &vrm); + } #endif |