summaryrefslogtreecommitdiffstats
path: root/libcxx/include/random
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/include/random')
-rw-r--r--libcxx/include/random5
1 files changed, 4 insertions, 1 deletions
diff --git a/libcxx/include/random b/libcxx/include/random
index ac7b04dbc07..0e0860e7398 100644
--- a/libcxx/include/random
+++ b/libcxx/include/random
@@ -2562,8 +2562,11 @@ subtract_with_carry_engine<_UIntType, __w, __s, __r>::seed(result_type __sd,
linear_congruential_engine<result_type, 40014u, 0u, 2147483563u>
__e(__sd == 0u ? default_seed : __sd);
for (size_t __i = 0; __i < __r; ++__i)
+ {
+ result_type __e0 = __e();
__x_[__i] = static_cast<result_type>(
- (__e() + ((uint64_t)__e() << 32)) & _Max);
+ (__e0 + ((uint64_t)__e() << 32)) & _Max);
+ }
__c_ = __x_[__r-1] == 0;
__i_ = 0;
}
OpenPOWER on IntegriCloud