Markus Wick b89e4b5258 Interpreter: Fix cmpi.
cmpi shall compare two signed 32 bit values. The used difference a-b
may overflow and so the resulting 32 bit value can't represent it.
A correct way would be cr = s64(a) - s64(b) and it should be done in
this way in the JITs, but the Interpreter shall implement the most
readable way.

Also drops the now unused helper function.
2017-08-11 17:35:22 +02:00
..
2017-08-10 21:30:32 +01:00
2017-06-15 18:52:22 -04:00
2017-08-11 15:36:31 +08:00
2017-08-11 17:35:22 +02:00
2017-07-07 16:44:38 -07:00
2017-06-06 16:27:52 +02:00
2017-08-11 15:36:32 +08:00
2017-08-11 15:36:32 +08:00
2017-08-11 15:36:32 +08:00
2017-04-25 09:20:09 +01:00
2017-03-27 23:46:19 -04:00
2017-03-18 21:13:12 -04:00
2017-01-12 21:30:11 +01:00
2017-06-28 11:22:10 +02:00