DOS/Windows-specific code: values.c
Eli Zaretskii
eliz@is.elta.co.il
Tue May 8 04:53:00 GMT 2001
* values.c:unpack_double()
/* Unsigned -- be sure we compensate for signed LONGEST. */
#if !defined (_MSC_VER) || (_MSC_VER > 900)
return (ULONGEST) unpack_long (type, valaddr);
#else
/* FIXME!!! msvc22 doesn't support unsigned __int64 -> double */
return (LONGEST) unpack_long (type, valaddr);
#endif /* _MSC_VER */
There's _got_ to be a better way to do this!
More information about the Gdb
mailing list