From 0bde89e4555b726104dff26b90378a17fa919648 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 19 May 2009 17:51:26 +0000 Subject: [PATCH] Remove 'class' specifier. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72113 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/Spiller.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/CodeGen/Spiller.h b/lib/CodeGen/Spiller.h index 12506fe4dec..e8385088102 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 spill(class LiveInterval *li) = 0; + virtual std::vector 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 -- 2.34.1