| Index: src/IceInstMIPS32.cpp
|
| diff --git a/src/IceInstMIPS32.cpp b/src/IceInstMIPS32.cpp
|
| index d0f096103643590dfd2962e1c384740b3bbef44b..fb66b4d2b6ab4d999a595a8a532eb7cf351f7da4 100644
|
| --- a/src/IceInstMIPS32.cpp
|
| +++ b/src/IceInstMIPS32.cpp
|
| @@ -912,6 +912,11 @@ template <> void InstMIPS32Div_s::emitIAS(const Cfg *Func) const {
|
| Asm->div_s(getDest(), getSrc(0), getSrc(1));
|
| }
|
|
|
| +template <> void InstMIPS32Divu::emitIAS(const Cfg *Func) const {
|
| + auto *Asm = Func->getAssembler<MIPS32::AssemblerMIPS32>();
|
| + Asm->divu(getDest(), getSrc(0));
|
| +}
|
| +
|
| template <> void InstMIPS32Lui::emitIAS(const Cfg *Func) const {
|
| auto *Asm = Func->getAssembler<MIPS32::AssemblerMIPS32>();
|
| auto *C32 = llvm::dyn_cast<ConstantInteger32>(getSrc(0));
|
|
|