| Index: src/IceInstARM32.cpp
|
| diff --git a/src/IceInstARM32.cpp b/src/IceInstARM32.cpp
|
| index ef1d99487a02dda436c30202ac9205c69d305f64..d9eba7acacc26ba50e4fb03621810e84afb0698a 100644
|
| --- a/src/IceInstARM32.cpp
|
| +++ b/src/IceInstARM32.cpp
|
| @@ -1202,6 +1202,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>();
|
|
|