| Index: src/IceInstARM32.cpp
|
| diff --git a/src/IceInstARM32.cpp b/src/IceInstARM32.cpp
|
| index ef1d99487a02dda436c30202ac9205c69d305f64..e14ddffc103f7cafb4175b87da20c8ea223bc81a 100644
|
| --- a/src/IceInstARM32.cpp
|
| +++ b/src/IceInstARM32.cpp
|
| @@ -230,6 +230,14 @@ template <> void InstARM32Mla::emitIAS(const Cfg *Func) const {
|
| emitUsingTextFixup(Func);
|
| }
|
|
|
| +template <> void InstARM32Mls::emitIAS(const Cfg *Func) const {
|
| + assert(getSrcSize() == 3);
|
| + auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>();
|
| + Asm->mls(getDest(), getSrc(0), getSrc(1), getSrc(2), getPredicate());
|
| + if (Asm->needsTextFixup())
|
| + emitUsingTextFixup(Func);
|
| +}
|
| +
|
| void InstARM32Pred::emitCmpLike(const char *Opcode, const InstARM32Pred *Inst,
|
| const Cfg *Func) {
|
| if (!BuildDefs::dump())
|
|
|