mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-05 13:09:10 +00:00
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:
parent
7683806ea3
commit
0bde89e455
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user