| Index: src/IceTargetLoweringARM32.h
|
| diff --git a/src/IceTargetLoweringARM32.h b/src/IceTargetLoweringARM32.h
|
| index c0e142edb5a7be5e2b9444d5bb672c63f4afbddf..8779beb222681bc9ca63f64f003ba96ef7df7f0c 100644
|
| --- a/src/IceTargetLoweringARM32.h
|
| +++ b/src/IceTargetLoweringARM32.h
|
| @@ -769,6 +769,9 @@ protected:
|
| void _vadd(Variable *Dest, Variable *Src0, Variable *Src1) {
|
| Context.insert<InstARM32Vadd>(Dest, Src0, Src1);
|
| }
|
| + void _vand(Variable *Dest, Variable *Src0, Variable *Src1) {
|
| + Context.insert<InstARM32Vand>(Dest, Src0, Src1);
|
| + }
|
| void _vcvt(Variable *Dest, Variable *Src, InstARM32Vcvt::VcvtVariant Variant,
|
| CondARM32::Cond Pred = CondARM32::AL) {
|
| Context.insert<InstARM32Vcvt>(Dest, Src, Variant, Pred);
|
|
|