| Index: src/IceTargetLoweringARM32.h
|
| diff --git a/src/IceTargetLoweringARM32.h b/src/IceTargetLoweringARM32.h
|
| index 8e50b2270bf0b99464346abe39cb7080fc464dc6..f2af4e371b5ed423aceabdb20a9a6227a29594d8 100644
|
| --- a/src/IceTargetLoweringARM32.h
|
| +++ b/src/IceTargetLoweringARM32.h
|
| @@ -389,6 +389,10 @@ protected:
|
| void _vadd(Variable *Dest, Variable *Src0, Variable *Src1) {
|
| Context.insert(InstARM32Vadd::create(Func, Dest, Src0, Src1));
|
| }
|
| + void _vcvt(Variable *Dest, Variable *Src, InstARM32Vcvt::VcvtVariant Variant,
|
| + CondARM32::Cond Pred = CondARM32::AL) {
|
| + Context.insert(InstARM32Vcvt::create(Func, Dest, Src, Variant, Pred));
|
| + }
|
| void _vdiv(Variable *Dest, Variable *Src0, Variable *Src1) {
|
| Context.insert(InstARM32Vdiv::create(Func, Dest, Src0, Src1));
|
| }
|
|
|