Add Real8Value.ToString()

This commit is contained in:
de4dot 2013-10-17 20:20:27 +02:00
parent 78196ffeee
commit f05fd30dc5

View File

@ -167,5 +167,11 @@ namespace de4dot.blocks.cflow {
public static Int64Value Conv_Ovf_U8_Un(Real8Value a) {
return Int64Value.CreateUnknown();
}
public override string ToString() {
if (!IsValid)
return "<INVALID_REAL8>";
return Value.ToString();
}
}
}