diff options
author | Jeff Law <jlaw@ventanamicro.com> | 2024-01-07 09:52:44 -0700 |
---|---|---|
committer | Jeff Law <jlaw@ventanamicro.com> | 2024-01-07 09:52:44 -0700 |
commit | 66d82874d2254bcb0124f77e6be220d299eab5f1 (patch) | |
tree | c23abe3bf44788f7c91b4a89c3fe037602b9cdca /gcc | |
parent | 1c765016557eb8d4c576bfe22c10abf0b398fbab (diff) | |
download | gcc-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.c | 2 |
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; } |