(b *testing.B)
| 160 | } |
| 161 | |
| 162 | func BenchmarkSub128(b *testing.B) { |
| 163 | x := makeUint128(0, 0) |
| 164 | y := makeUint128(0, 0) |
| 165 | |
| 166 | for i := 0; i != b.N; i++ { |
| 167 | sub128(x, y) |
| 168 | } |
| 169 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…