aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/CodeGen/Spiller.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/CodeGen/Spiller.h b/lib/CodeGen/Spiller.h
index 12506fe4de..e838508810 100644
--- a/lib/CodeGen/Spiller.h
+++ b/lib/CodeGen/Spiller.h
@@ -22,12 +22,12 @@ namespace llvm {
class Spiller {
public:
virtual ~Spiller() = 0;
- virtual std::vector<LiveInterval*> spill(class LiveInterval *li) = 0;
+ virtual std::vector<LiveInterval*> spill(LiveInterval *li) = 0;
};
/// Create and return a spiller object, as specified on the command line.
- Spiller* createSpiller(class MachineFunction *mf, class LiveIntervals *li,
- class VirtRegMap *vrm);
+ Spiller* createSpiller(MachineFunction *mf, LiveIntervals *li,
+ VirtRegMap *vrm);
}
#endif