| Index: src/IceTargetLoweringARM32.cpp
|
| diff --git a/src/IceTargetLoweringARM32.cpp b/src/IceTargetLoweringARM32.cpp
|
| index 09254670705cd7054d21ad757607423a6eac92ec..5a87a0bb1d73c85af54852a8e8420a5a0a2c836e 100644
|
| --- a/src/IceTargetLoweringARM32.cpp
|
| +++ b/src/IceTargetLoweringARM32.cpp
|
| @@ -383,6 +383,12 @@ Variable *TargetARM32::getPhysicalRegister(SizeT RegNum, Type Ty) {
|
| return Reg;
|
| }
|
|
|
| +void TargetARM32::emitJumpTable(const Cfg *Func,
|
| + const InstJumpTable *JumpTable) const {
|
| + (void)JumpTable;
|
| + UnimplementedError(Func->getContext()->getFlags());
|
| +}
|
| +
|
| void TargetARM32::emitVariable(const Variable *Var) const {
|
| Ostream &Str = Ctx->getStrEmit();
|
| if (Var->hasReg()) {
|
| @@ -2709,6 +2715,12 @@ void TargetDataARM32::lowerConstants() {
|
| UnimplementedError(Ctx->getFlags());
|
| }
|
|
|
| +void TargetDataARM32::lowerJumpTables() {
|
| + if (Ctx->getFlags().getDisableTranslation())
|
| + return;
|
| + UnimplementedError(Ctx->getFlags());
|
| +}
|
| +
|
| TargetHeaderARM32::TargetHeaderARM32(GlobalContext *Ctx)
|
| : TargetHeaderLowering(Ctx), CPUFeatures(Ctx->getFlags()) {}
|
|
|
|
|