Several MIPS32 Revision 2 instructions also belong to Revision 1 of MIPS64.
Modifing parts of mips_dirtyhelper_calculate_FCSR to be active for MIPS64R1.
This fixes none/tests/mips64/round when Valgrind is compiled for MIPS64 R1.
git-svn-id: svn://svn.valgrind.org/vex/trunk@2774
case ROUNDWS:
ASM_VOLATILE_ROUND(fs, round.w.s)
break;
-#if defined(__mips_isa_rev) && (__mips_isa_rev >= 2)
+#if ((__mips == 32) && defined(__mips_isa_rev) && (__mips_isa_rev >= 2)) \
+ || (__mips == 64)
case CEILLS:
ASM_VOLATILE_ROUND(fs, ceil.l.s)
break;