]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Fix typo in last change
authorJeff Law <jlaw@ventanamicro.com>
Sun, 7 Jan 2024 16:52:44 +0000 (09:52 -0700)
committerJeff Law <jlaw@ventanamicro.com>
Sun, 7 Jan 2024 16:52:44 +0000 (09:52 -0700)
gcc/testsuite
* gcc.dg/tree-ssa/phi-opt-25b.c: Remove extraneous "short".

gcc/testsuite/gcc.dg/tree-ssa/phi-opt-25b.c

index 2cb4361dc0010ca39d8e394de4dc812cbcda38f3..5d557360ab3038360978e081ecc84a372eb666e5 100644 (file)
@@ -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;
 }