Chromium Code Reviews| Index: src/IceTargetLoweringARM32.h |
| diff --git a/src/IceTargetLoweringARM32.h b/src/IceTargetLoweringARM32.h |
| index 8779beb222681bc9ca63f64f003ba96ef7df7f0c..cf85ff51d0ddf259c8aadffc3ae082b392f7bfd8 100644 |
| --- a/src/IceTargetLoweringARM32.h |
| +++ b/src/IceTargetLoweringARM32.h |
| @@ -772,6 +772,9 @@ protected: |
| void _vand(Variable *Dest, Variable *Src0, Variable *Src1) { |
| Context.insert<InstARM32Vand>(Dest, Src0, Src1); |
| } |
| + void _vorr(Variable *Dest, Variable *Src0, Variable *Src1) { |
|
Jim Stichnoth
2016/01/27 22:38:05
This should probably be inserted alphabetically.
Eric Holk
2016/01/27 22:51:47
Done.
|
| + Context.insert<InstARM32Vorr>(Dest, Src0, Src1); |
| + } |
| void _vcvt(Variable *Dest, Variable *Src, InstARM32Vcvt::VcvtVariant Variant, |
| CondARM32::Cond Pred = CondARM32::AL) { |
| Context.insert<InstARM32Vcvt>(Dest, Src, Variant, Pred); |