| Index: src/IceTargetLoweringMIPS32.cpp
|
| diff --git a/src/IceTargetLoweringMIPS32.cpp b/src/IceTargetLoweringMIPS32.cpp
|
| index add97b36dd8abcae2d278ed6e015442ee380b2d1..2fb7ea308b934f3255274d838c184d841a18db27 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;
|
| @@ -712,6 +718,12 @@ void TargetDataMIPS32::lowerConstants() {
|
| UnimplementedError(Ctx->getFlags());
|
| }
|
|
|
| +void TargetDataMIPS32::lowerJumpTables() {
|
| + if (Ctx->getFlags().getDisableTranslation())
|
| + return;
|
| + UnimplementedError(Ctx->getFlags());
|
| +}
|
| +
|
| TargetHeaderMIPS32::TargetHeaderMIPS32(GlobalContext *Ctx)
|
| : TargetHeaderLowering(Ctx) {}
|
|
|
|
|