Remove 'class' specifier.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@72113 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2009-05-19 17:51:26 +00:00
parent 7683806ea3
commit 0bde89e455

View File

@ -22,12 +22,12 @@ namespace llvm {
class Spiller { class Spiller {
public: public:
virtual ~Spiller() = 0; 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. /// Create and return a spiller object, as specified on the command line.
Spiller* createSpiller(class MachineFunction *mf, class LiveIntervals *li, Spiller* createSpiller(MachineFunction *mf, LiveIntervals *li,
class VirtRegMap *vrm); VirtRegMap *vrm);
} }
#endif #endif