mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-27 03:33:27 -03:00
Prevent warning: variable 'x' is uninitialized
This commit is contained in:
parent
c73af5416b
commit
5ec883667f
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ static void SipHash_32b(benchmark::State& state)
|
||||||
static void FastRandom_32bit(benchmark::State& state)
|
static void FastRandom_32bit(benchmark::State& state)
|
||||||
{
|
{
|
||||||
FastRandomContext rng(true);
|
FastRandomContext rng(true);
|
||||||
uint32_t x;
|
uint32_t x = 0;
|
||||||
while (state.KeepRunning()) {
|
while (state.KeepRunning()) {
|
||||||
for (int i = 0; i < 1000000; i++) {
|
for (int i = 0; i < 1000000; i++) {
|
||||||
x += rng.rand32();
|
x += rng.rand32();
|
||||||
|
@ -84,7 +84,7 @@ static void FastRandom_32bit(benchmark::State& state)
|
||||||
static void FastRandom_1bit(benchmark::State& state)
|
static void FastRandom_1bit(benchmark::State& state)
|
||||||
{
|
{
|
||||||
FastRandomContext rng(true);
|
FastRandomContext rng(true);
|
||||||
uint32_t x;
|
uint32_t x = 0;
|
||||||
while (state.KeepRunning()) {
|
while (state.KeepRunning()) {
|
||||||
for (int i = 0; i < 1000000; i++) {
|
for (int i = 0; i < 1000000; i++) {
|
||||||
x += rng.randbool();
|
x += rng.randbool();
|
||||||
|
|
Loading…
Add table
Reference in a new issue