hc
2024-05-10 748e4f3d702def1a4bff191e0cf93b6a05340f01
kernel/arch/sparc/math-emu/math_32.c
....@@ -359,7 +359,7 @@
359359 *pfsr |= (6 << 14);
360360 return 0; /* simulate invalid_fp_register exception */
361361 }
362
- /* fall through */
362
+ fallthrough;
363363 case 2:
364364 if (freg & 1) { /* doublewords must have bit 5 zeroed */
365365 *pfsr |= (6 << 14);
....@@ -380,7 +380,7 @@
380380 *pfsr |= (6 << 14);
381381 return 0; /* simulate invalid_fp_register exception */
382382 }
383
- /* fall through */
383
+ fallthrough;
384384 case 2:
385385 if (freg & 1) { /* doublewords must have bit 5 zeroed */
386386 *pfsr |= (6 << 14);
....@@ -408,13 +408,13 @@
408408 *pfsr |= (6 << 14);
409409 return 0; /* simulate invalid_fp_register exception */
410410 }
411
- /* fall through */
411
+ fallthrough;
412412 case 2:
413413 if (freg & 1) { /* doublewords must have bit 5 zeroed */
414414 *pfsr |= (6 << 14);
415415 return 0;
416416 }
417
- /* fall through */
417
+ fallthrough;
418418 case 1:
419419 rd = (void *)&fregs[freg];
420420 break;