summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hash.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/hash.c b/hash.c
index 83ed66d530..fc30ae9cbc 100644
--- a/hash.c
+++ b/hash.c
@@ -293,7 +293,9 @@ rb_ident_hash(st_data_t n)
* many integers get interpreted as 2.0 or -2.0 [Bug #10761]
*/
if (FLONUM_P(n)) {
- n ^= (st_data_t)rb_float_value(n);
+ union { double d; st_data_t i; } u;
+ u.d = rb_float_value(n);
+ n ^= u.i;
}
#endif