From: Paul Floyd Date: Sat, 9 May 2026 19:34:26 +0000 (+0200) Subject: Regtest: remove duplicate break from iropt-test/unary.c X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de406d48666a70137b5459642e04c0e34117202e;p=thirdparty%2Fvalgrind.git Regtest: remove duplicate break from iropt-test/unary.c Louis Brunner fixed this and I noticed the diff so merging it upstream. --- diff --git a/none/tests/iropt-test/unary.c b/none/tests/iropt-test/unary.c index 26962381d..6b24cc6f0 100644 --- a/none/tests/iropt-test/unary.c +++ b/none/tests/iropt-test/unary.c @@ -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;