[llvm-commits] [llvm] r70707 - /llvm/trunk/lib/Target/MSP430/MSP430RegisterInfo.cpp
Anton Korobeynikov
asl at math.spbu.ru
Sun May 3 06:01:04 PDT 2009
Author: asl
Date: Sun May 3 08:01:04 2009
New Revision: 70707
URL: http://llvm.org/viewvc/llvm-project?rev=70707&view=rev
Log:
Make emit{Prologue,Epilogue}() noop for now
Modified:
llvm/trunk/lib/Target/MSP430/MSP430RegisterInfo.cpp
Modified: llvm/trunk/lib/Target/MSP430/MSP430RegisterInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/MSP430/MSP430RegisterInfo.cpp?rev=70707&r1=70706&r2=70707&view=diff
==============================================================================
--- llvm/trunk/lib/Target/MSP430/MSP430RegisterInfo.cpp (original)
+++ llvm/trunk/lib/Target/MSP430/MSP430RegisterInfo.cpp Sun May 3 08:01:04 2009
@@ -80,12 +80,12 @@
}
void MSP430RegisterInfo::emitPrologue(MachineFunction &MF) const {
- assert(0 && "Not implemented yet!");
+ // Nothing here yet
}
void MSP430RegisterInfo::emitEpilogue(MachineFunction &MF,
MachineBasicBlock &MBB) const {
- assert(0 && "Not implemented yet!");
+ // Nothing here yet
}
unsigned MSP430RegisterInfo::getRARegister() const {
More information about the llvm-commits
mailing list