Index: src/IceTargetLoweringMIPS32.h |
diff --git a/src/IceTargetLoweringMIPS32.h b/src/IceTargetLoweringMIPS32.h |
index a90311a2f0d76cb046027b2c9d78a8bd23d11aca..8ea2923b9d468408a764cb7aea3fa3bee42a1041 100644 |
--- a/src/IceTargetLoweringMIPS32.h |
+++ b/src/IceTargetLoweringMIPS32.h |
@@ -184,6 +184,10 @@ public: |
} |
} |
+ void _mfc1(Variable *Dest, Variable *Src) { |
+ Context.insert<InstMIPS32Mfc1>(Dest, Src); |
+ } |
+ |
void _mfhi(Variable *Dest, Operand *Src) { |
Context.insert<InstMIPS32Mfhi>(Dest, Src); |
} |
@@ -192,6 +196,10 @@ public: |
Context.insert<InstMIPS32Mflo>(Dest, Src); |
} |
+ void _mtc1(Variable *Dest, Variable *Src) { |
+ Context.insert<InstMIPS32Mtc1>(Dest, Src); |
+ } |
+ |
void _mthi(Variable *Dest, Operand *Src) { |
Context.insert<InstMIPS32Mthi>(Dest, Src); |
} |