| Index: src/IceInstARM32.cpp
|
| diff --git a/src/IceInstARM32.cpp b/src/IceInstARM32.cpp
|
| index e14ddffc103f7cafb4175b87da20c8ea223bc81a..b7d7fd6ff577cf6ef86aa25cbba67c550291cd20 100644
|
| --- a/src/IceInstARM32.cpp
|
| +++ b/src/IceInstARM32.cpp
|
| @@ -1210,6 +1210,14 @@ void InstARM32UnaryopGPR<K, Nws>::emitIAS(const Cfg *Func) const {
|
| emitUsingTextFixup(Func);
|
| }
|
|
|
| +template <> void InstARM32Rbit::emitIAS(const Cfg *Func) const {
|
| + assert(getSrcSize() == 1);
|
| + auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>();
|
| + Asm->rbit(getDest(), getSrc(0), getPredicate());
|
| + if (Asm->needsTextFixup())
|
| + emitUsingTextFixup(Func);
|
| +}
|
| +
|
| template <> void InstARM32Rev::emitIAS(const Cfg *Func) const {
|
| assert(getSrcSize() == 1);
|
| auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>();
|
|
|