]> git.ipfire.org Git - thirdparty/gcc.git/commit
arm: PR target/109939 Correct signedness of return type of __ssat intrinsics
authorKyrylo Tkachov <kyrylo.tkachov@arm.com>
Wed, 24 May 2023 08:33:04 +0000 (09:33 +0100)
committerKyrylo Tkachov <kyrylo.tkachov@arm.com>
Wed, 24 May 2023 08:33:04 +0000 (09:33 +0100)
commit95542a6ec4b350c653b793b7c36a8210b0e9a89d
tree673eb4029bfaa24e2a6f020d2179cdeae143a93b
parentec40410d98e57fc6650241d4e05119a1f0af6a41
arm: PR target/109939 Correct signedness of return type of __ssat intrinsics

As the PR says we shouldn't be using qualifier_unsigned for the return type of the __ssat intrinsics.
UNSIGNED_SAT_BINOP_UNSIGNED_IMM_QUALIFIERS already exists for that.
This was just a thinko.
This patch fixes this and the warning with -Wconversion goes away.

Bootstrapped and tested on arm-none-linux-gnueabihf.

gcc/ChangeLog:

PR target/109939
* config/arm/arm-builtins.cc (SAT_BINOP_UNSIGNED_IMM_QUALIFIERS): Use
qualifier_none for the return operand.

gcc/testsuite/ChangeLog:

PR target/109939
* gcc.target/arm/pr109939.c: New test.
gcc/config/arm/arm-builtins.cc
gcc/testsuite/gcc.target/arm/pr109939.c [new file with mode: 0644]