diff options
author | Chris Lattner <sabre@nondot.org> | 2005-09-30 06:55:18 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-09-30 06:55:18 +0000 |
commit | e4047188e73f474a74a544d7c22366b11cdb9897 (patch) | |
tree | 03208e7607a93c05d6ea112ca081338abcb6d378 | |
parent | 4794797f1213c4096a6f5ff2b6841dd5866b22ba (diff) |
stub out a virtual method
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23554 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/SparcV9/SparcV9RegisterInfo.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Target/SparcV9/SparcV9RegisterInfo.h b/lib/Target/SparcV9/SparcV9RegisterInfo.h index ed810236a8..a284898f6a 100644 --- a/lib/Target/SparcV9/SparcV9RegisterInfo.h +++ b/lib/Target/SparcV9/SparcV9RegisterInfo.h @@ -23,6 +23,10 @@ namespace llvm { struct SparcV9RegisterInfo : public MRegisterInfo { SparcV9RegisterInfo (); const unsigned *getCalleeSaveRegs() const; + const TargetRegisterClass* const *getCalleeSaveRegClasses() const { + return 0; + } + // The rest of these are stubs... for now. void storeRegToStackSlot(MachineBasicBlock &MBB, |