Index: src/IceTargetLoweringARM32.h |
diff --git a/src/IceTargetLoweringARM32.h b/src/IceTargetLoweringARM32.h |
index 8779beb222681bc9ca63f64f003ba96ef7df7f0c..b8c10406e15457bc42827089125d6b70305cc90a 100644 |
--- a/src/IceTargetLoweringARM32.h |
+++ b/src/IceTargetLoweringARM32.h |
@@ -802,6 +802,9 @@ protected: |
void _vmul(Variable *Dest, Variable *Src0, Variable *Src1) { |
Context.insert<InstARM32Vmul>(Dest, Src0, Src1); |
} |
+ void _vorr(Variable *Dest, Variable *Src0, Variable *Src1) { |
+ Context.insert<InstARM32Vorr>(Dest, Src0, Src1); |
+ } |
void _vsqrt(Variable *Dest, Variable *Src, |
CondARM32::Cond Pred = CondARM32::AL) { |
Context.insert<InstARM32Vsqrt>(Dest, Src, Pred); |