| Index: src/IceTargetLoweringMIPS32.cpp
|
| diff --git a/src/IceTargetLoweringMIPS32.cpp b/src/IceTargetLoweringMIPS32.cpp
|
| index 99c992827475a222248838f4f07d062e42dd367f..d55fce69ed1b3a6d1d334794909ca7b05c7d3102 100644
|
| --- a/src/IceTargetLoweringMIPS32.cpp
|
| +++ b/src/IceTargetLoweringMIPS32.cpp
|
| @@ -254,6 +254,12 @@ Variable *TargetMIPS32::getPhysicalRegister(SizeT RegNum, Type Ty) {
|
| return Reg;
|
| }
|
|
|
| +void TargetMIPS32::emitJumpTable(const Cfg *Func,
|
| + const InstJumpTable *JumpTable) const {
|
| + (void)JumpTable;
|
| + UnimplementedError(Func->getContext()->getFlags());
|
| +}
|
| +
|
| void TargetMIPS32::emitVariable(const Variable *Var) const {
|
| Ostream &Str = Ctx->getStrEmit();
|
| (void)Var;
|
| @@ -703,6 +709,12 @@ void TargetDataMIPS32::lowerConstants() {
|
| UnimplementedError(Ctx->getFlags());
|
| }
|
|
|
| +void TargetDataMIPS32::lowerJumpTables() {
|
| + if (Ctx->getFlags().getDisableTranslation())
|
| + return;
|
| + UnimplementedError(Ctx->getFlags());
|
| +}
|
| +
|
| TargetHeaderMIPS32::TargetHeaderMIPS32(GlobalContext *Ctx)
|
| : TargetHeaderLowering(Ctx) {}
|
|
|
|
|