| Index: src/IceTargetLoweringARM32.cpp
|
| diff --git a/src/IceTargetLoweringARM32.cpp b/src/IceTargetLoweringARM32.cpp
|
| index faf1aa03d2b2c149f54aa42bb3761b06e87ef611..6af7ad1926467afceaf3d64f8aff3e1068d9dff1 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()) {
|
| @@ -2722,6 +2728,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()) {}
|
|
|
|
|