Merge pull request #209 from jmagnuson/master
Fix benchmark macro `bench_binop`
This commit is contained in:
commit
e0fc89ffc6
|
@ -16,7 +16,7 @@ macro_rules! bench_binop(
|
||||||
i = (i + 1) & (LEN - 1);
|
i = (i + 1) & (LEN - 1);
|
||||||
|
|
||||||
unsafe {
|
unsafe {
|
||||||
test::black_box(elems1.get_unchecked(i).$binop(*elems2.get_unchecked(i)))
|
test::black_box((*elems1.get_unchecked(i)).$binop(*elems2.get_unchecked(i)))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue