| Index: src/IceInstARM32.cpp
|
| diff --git a/src/IceInstARM32.cpp b/src/IceInstARM32.cpp
|
| index a82c148b66be1e98c567413e260997eade1a3abd..c7d4e10dc0668dad81772c73a3e7202aeb6f6042 100644
|
| --- a/src/IceInstARM32.cpp
|
| +++ b/src/IceInstARM32.cpp
|
| @@ -633,6 +633,14 @@ template <> void InstARM32Vdiv::emitIAS(const Cfg *Func) const {
|
| assert(!Asm->needsTextFixup());
|
| }
|
|
|
| +template <> void InstARM32Veor::emitIAS(const Cfg *Func) const {
|
| + auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>();
|
| + const Variable *Dest = getDest();
|
| + assert(Dest->getType() == IceType_f64);
|
| + Asm->veord(Dest, getSrc(0), getSrc(1));
|
| + assert(!Asm->needsTextFixup());
|
| +}
|
| +
|
| template <> void InstARM32Vsub::emitIAS(const Cfg *Func) const {
|
| auto *Asm = Func->getAssembler<ARM32::AssemblerARM32>();
|
| const Variable *Dest = getDest();
|
|
|