Chromium Code Reviews| Index: src/IceTargetLoweringMIPS32.h |
| diff --git a/src/IceTargetLoweringMIPS32.h b/src/IceTargetLoweringMIPS32.h |
| index 5cc412f2ad290bb27adcff09cc36b0c1945bf127..2b3ec8cf7938007711b02f2bd810105fc3f7dc0c 100644 |
| --- a/src/IceTargetLoweringMIPS32.h |
| +++ b/src/IceTargetLoweringMIPS32.h |
| @@ -505,6 +505,10 @@ public: |
| Context.insert<InstMIPS32Swc1>(Value, Mem); |
| } |
| + void _teq(Variable *Src0, Variable *Src1, const uint32_t TrapCode) { |
|
Jim Stichnoth
2016/09/16 16:33:02
I would remove the "const" here.
jaydeep.patil
2016/09/19 03:30:51
Done.
|
| + Context.insert<InstMIPS32Teq>(Src0, Src1, TrapCode); |
| + } |
| + |
| void _trunc_l_d(Variable *Dest, Variable *Src) { |
| Context.insert<InstMIPS32Trunc_l_d>(Dest, Src); |
| } |