aboutsummaryrefslogtreecommitdiff
path: root/gdb/values.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/values.c')
-rw-r--r--gdb/values.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gdb/values.c b/gdb/values.c
index f5a7ce0..bb441cd 100644
--- a/gdb/values.c
+++ b/gdb/values.c
@@ -695,12 +695,7 @@ unpack_double (struct type *type, char *valaddr, int *invp)
else if (nosign)
{
/* 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 */
}
else
{