summaryrefslogtreecommitdiff
path: root/time.c
diff options
context:
space:
mode:
Diffstat (limited to 'time.c')
-rw-r--r--time.c14
1 files changed, 12 insertions, 2 deletions
diff --git a/time.c b/time.c
index 1faa5c87b8..63780416dd 100644
--- a/time.c
+++ b/time.c
@@ -594,12 +594,22 @@ rb_time_magnify(VALUE v)
#else
long a, b, c;
a = FIX2LONG(v);
- if (a == 0)
- return x;
+ if (a == 0) {
+#if WIDEINT_IS_UINT64
+ WIDEVAL_SET(ret, INT64toFIXWV(0));
+#else
+ WIDEVAL_SET(ret, INT2FIX(0));
+#endif
+ return ret;
+ }
b = TIME_SCALE;
c = a * b;
if (c / a == b) {
+#if WIDEINT_IS_UINT64
WIDEVAL_SET(ret, INT64toFIXWV(c));
+#else
+ WIDEVAL_SET(ret, LONG2NUM(c));
+#endif
return ret;
}
#endif