Commit 463ffd8 1 parent 8ec166c commit 463ffd8 Copy full SHA for 463ffd8
File tree 2 files changed +16
-0
lines changed
2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -2176,10 +2176,13 @@ void pq2_8cents_table(
2176
2176
switch (nout) {
2177
2177
case 4 :
2178
2178
ip3.storeu (out + 3 * ldo);
2179
+ [[fallthrough]];
2179
2180
case 3 :
2180
2181
ip2.storeu (out + 2 * ldo);
2182
+ [[fallthrough]];
2181
2183
case 2 :
2182
2184
ip1.storeu (out + 1 * ldo);
2185
+ [[fallthrough]];
2183
2186
case 1 :
2184
2187
ip0.storeu (out);
2185
2188
}
Original file line number Diff line number Diff line change @@ -280,21 +280,27 @@ struct HammingComputerDefault {
280
280
case 7 :
281
281
accu += popcount64 (a64[i] ^ b64[i]);
282
282
i++;
283
+ [[fallthrough]];
283
284
case 6 :
284
285
accu += popcount64 (a64[i] ^ b64[i]);
285
286
i++;
287
+ [[fallthrough]];
286
288
case 5 :
287
289
accu += popcount64 (a64[i] ^ b64[i]);
288
290
i++;
291
+ [[fallthrough]];
289
292
case 4 :
290
293
accu += popcount64 (a64[i] ^ b64[i]);
291
294
i++;
295
+ [[fallthrough]];
292
296
case 3 :
293
297
accu += popcount64 (a64[i] ^ b64[i]);
294
298
i++;
299
+ [[fallthrough]];
295
300
case 2 :
296
301
accu += popcount64 (a64[i] ^ b64[i]);
297
302
i++;
303
+ [[fallthrough]];
298
304
case 1 :
299
305
accu += popcount64 (a64[i] ^ b64[i]);
300
306
i++;
@@ -306,18 +312,25 @@ struct HammingComputerDefault {
306
312
switch (remainder8) {
307
313
case 7 :
308
314
accu += hamdis_tab_ham_bytes[a[6 ] ^ b[6 ]];
315
+ [[fallthrough]];
309
316
case 6 :
310
317
accu += hamdis_tab_ham_bytes[a[5 ] ^ b[5 ]];
318
+ [[fallthrough]];
311
319
case 5 :
312
320
accu += hamdis_tab_ham_bytes[a[4 ] ^ b[4 ]];
321
+ [[fallthrough]];
313
322
case 4 :
314
323
accu += hamdis_tab_ham_bytes[a[3 ] ^ b[3 ]];
324
+ [[fallthrough]];
315
325
case 3 :
316
326
accu += hamdis_tab_ham_bytes[a[2 ] ^ b[2 ]];
327
+ [[fallthrough]];
317
328
case 2 :
318
329
accu += hamdis_tab_ham_bytes[a[1 ] ^ b[1 ]];
330
+ [[fallthrough]];
319
331
case 1 :
320
332
accu += hamdis_tab_ham_bytes[a[0 ] ^ b[0 ]];
333
+ [[fallthrough]];
321
334
default :
322
335
break ;
323
336
}
You can’t perform that action at this time.
0 commit comments