Merge branch 'master' of dice:git/vm

This commit is contained in:
Joel Dice
2007-10-25 16:06:10 -06:00
3 changed files with 9 additions and 4 deletions

View File

@ -1479,11 +1479,11 @@ interpret(Thread* t)
} goto loop;
case i2d: {
pushDouble(t, static_cast<double>(popInt(t)));
pushDouble(t, static_cast<double>(static_cast<int32_t>(popInt(t))));
} goto loop;
case i2f: {
pushFloat(t, static_cast<float>(popInt(t)));
pushFloat(t, static_cast<float>(static_cast<int32_t>(popInt(t))));
} goto loop;
case i2l: {