]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Regtest: remove duplicate break from iropt-test/unary.c
authorPaul Floyd <pjfloyd@wanadoo.fr>
Sat, 9 May 2026 19:34:26 +0000 (21:34 +0200)
committerPaul Floyd <pjfloyd@wanadoo.fr>
Sat, 9 May 2026 19:34:26 +0000 (21:34 +0200)
Louis Brunner fixed this and I noticed the diff so merging
it upstream.

none/tests/iropt-test/unary.c

index 26962381de72ef426d9c21ccd35d8ae3988a2a50..6b24cc6f0c74c3c9794577cac3dd549221b634b0 100644 (file)
@@ -162,7 +162,6 @@ get_expected_value(const irop_t *op, const test_data_t *data)
 // case Iop_16to1:   expected = opnd & 0x1;       break;
    case Iop_16to8:   expected = opnd & UINT8_MAX; break;
    case Iop_16HIto8: expected = opnd >> 8;        break;
-      break;
 
    case Iop_32to1:    expected = opnd & 0x1;        break;
    case Iop_32to8:    expected = opnd & UINT8_MAX;  break;