Fixed disassembly of Conv_R_Un opcode.
Fixes #1309.
Looking at the documentation, it should be a float operation rather than double.
However @m4rs-mt, I do not understand the last section of the implementation notes. Do we need to do anything special to handle the float64 case?
If overflow occurs converting a floating-point type to an integer the result returned is unspecified. The conv.r.un operation takes an integer off the stack, interprets it as unsigned, and replaces it with a floating-point number to represent the integer: either a float32, if this is wide enough to represent the integer without loss of precision, or else a float64.
Source: https://learn.microsoft.com/en-us/dotnet/api/system.reflection.emit.opcodes.conv_r_un?view=net-8.0
Nice catch, thank you very much for looking into this. I think the documentation may be interpreted as:
if IsInt(top of stack) then castFP32(top of stack) else castFP64(top of stack)
Superseded by #1356.