Remove 'class' specifier.

llvm-svn: 72113
This commit is contained in:
Bill Wendling 2009-05-19 17:51:26 +00:00
parent a8705a95a6
commit a3b8e84a57
1 changed files with 3 additions and 3 deletions

View File

@ -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