diff --git a/de4dot.blocks/cflow/Real8Value.cs b/de4dot.blocks/cflow/Real8Value.cs index d6c7bbd8..5087046d 100644 --- a/de4dot.blocks/cflow/Real8Value.cs +++ b/de4dot.blocks/cflow/Real8Value.cs @@ -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 ""; + return Value.ToString(); + } } }