aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorJeff Law <jlaw@ventanamicro.com>2024-01-07 09:52:44 -0700
committerJeff Law <jlaw@ventanamicro.com>2024-01-07 09:52:44 -0700
commit66d82874d2254bcb0124f77e6be220d299eab5f1 (patch)
treec23abe3bf44788f7c91b4a89c3fe037602b9cdca /gcc
parent1c765016557eb8d4c576bfe22c10abf0b398fbab (diff)
downloadgcc-66d82874d2254bcb0124f77e6be220d299eab5f1.zip
gcc-66d82874d2254bcb0124f77e6be220d299eab5f1.tar.gz
gcc-66d82874d2254bcb0124f77e6be220d299eab5f1.tar.bz2
Fix typo in last change
gcc/testsuite * gcc.dg/tree-ssa/phi-opt-25b.c: Remove extraneous "short".
Diffstat (limited to 'gcc')
-rw-r--r--gcc/testsuite/gcc.dg/tree-ssa/phi-opt-25b.c2
1 files changed, 1 insertions, 1 deletions
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 2cb4361..5d55736 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;
}