Skip to content

Commit e4b8aec

Browse files
committed
silence maybe-unitialized
1 parent f4fd647 commit e4b8aec

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

verify/simd/many_facts.test.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ void facts_inplace(vector<int> &args) {
3535
for(int j = 0; j < 4; j++) {
3636
cur[z][j] = b + z * block + j * block / 4;
3737
prods[z][0][j] = cur[z][j] + !(b || z || j);
38+
#pragma GCC diagnostic push
39+
#pragma GCC diagnostic ignored "-Wmaybe-uninitialized"
3840
cur[z][j] = cur[z][j] * b2x32 % mod;
41+
#pragma GCC diagnostic pop
3942
}
4043
}
4144
for(int i = 1; i < block / 4; i++) {

0 commit comments

Comments
 (0)