| Index: runtime/vm/constants_mips.h
|
| ===================================================================
|
| --- runtime/vm/constants_mips.h (revision 25483)
|
| +++ runtime/vm/constants_mips.h (working copy)
|
| @@ -186,8 +186,11 @@
|
|
|
| // The code that generates a comparison can be far away from the code that
|
| // generates the branch that uses the result of that comparison. In this case,
|
| -// CMPRES is used for the result of the comparison.
|
| -const Register CMPRES = T9;
|
| +// CMPRES1 and CMPRES2 are used for the results of the comparison. We need two
|
| +// since TMP is clobbered by a far branch.
|
| +const Register CMPRES1 = T8;
|
| +const Register CMPRES2 = T9;
|
| +const Register CMPRES = CMPRES1;
|
|
|
| // Exception object is passed in this register to the catch handlers when an
|
| // exception is thrown.
|
|
|