| Index: src/IceInstARM32.cpp
|
| diff --git a/src/IceInstARM32.cpp b/src/IceInstARM32.cpp
|
| index 7217b5456f8daa687e38c0cb7144624d0f59740f..d592ea9ec4eef18199bfb324dfb107177f01aa72 100644
|
| --- a/src/IceInstARM32.cpp
|
| +++ b/src/IceInstARM32.cpp
|
| @@ -1191,6 +1191,14 @@ void InstARM32UnaryopGPR<K, Nws>::emitIAS(const Cfg *Func) const {
|
| emitUsingTextFixup(Func);
|
| }
|
|
|
| +template <> void InstARM32Rev::emitIAS(const Cfg *Func) const {
|
| + assert(getSrcSize() == 1);
|
| + auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>();
|
| + Asm->rev(getDest(), getSrc(0), getPredicate());
|
| + if (Asm->needsTextFixup())
|
| + emitUsingTextFixup(Func);
|
| +}
|
| +
|
| template <> void InstARM32Movw::emit(const Cfg *Func) const {
|
| if (!BuildDefs::dump())
|
| return;
|
|
|