| Index: src/IceTargetLoweringARM32.h
|
| diff --git a/src/IceTargetLoweringARM32.h b/src/IceTargetLoweringARM32.h
|
| index 9d2b760f20fcbfc6ab4da64af7de690a17cef713..2cfa945e0fad3d0d159ba4820b6266ead24495ab 100644
|
| --- a/src/IceTargetLoweringARM32.h
|
| +++ b/src/IceTargetLoweringARM32.h
|
| @@ -854,6 +854,9 @@ protected:
|
| void _vand(Variable *Dest, Variable *Src0, Variable *Src1) {
|
| Context.insert<InstARM32Vand>(Dest, Src0, Src1);
|
| }
|
| + InstARM32Vbsl *_vbsl(Variable *Dest, Variable *Src0, Variable *Src1) {
|
| + return Context.insert<InstARM32Vbsl>(Dest, Src0, Src1);
|
| + }
|
| void _vcvt(Variable *Dest, Variable *Src, InstARM32Vcvt::VcvtVariant Variant,
|
| CondARM32::Cond Pred = CondARM32::AL) {
|
| Context.insert<InstARM32Vcvt>(Dest, Src, Variant, Pred);
|
|
|