From: Jeff Law Date: Sun, 7 Jan 2024 16:52:44 +0000 (-0700) Subject: Fix typo in last change X-Git-Tag: basepoints/gcc-15~3156 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=66d82874d2254bcb0124f77e6be220d299eab5f1;p=thirdparty%2Fgcc.git Fix typo in last change gcc/testsuite * gcc.dg/tree-ssa/phi-opt-25b.c: Remove extraneous "short". --- diff --git a/gcc/testsuite/gcc.dg/tree-ssa/phi-opt-25b.c b/gcc/testsuite/gcc.dg/tree-ssa/phi-opt-25b.c index 2cb4361dc001..5d557360ab30 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/phi-opt-25b.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/phi-opt-25b.c @@ -5,7 +5,7 @@ /* Test to make sure unrelated arguments and comparisons don't get optimized incorrectly. */ -__UINT16_TYPE__ short test_bswap16(__UINT16_TYPE__ x, __UINT16_TYPE__ y) +__UINT16_TYPE__ test_bswap16(__UINT16_TYPE__ x, __UINT16_TYPE__ y) { return x ? __builtin_bswap16(y) : 0; }