We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation: https://developer.arm.com/architectures/instruction-sets/intrinsics/#f:@navigationhierarchiessimdisa=[Neon]&q=qshrun_high_n According to the ARM NEON documentation, the return type of vqshrun_high_n_s{16/32/64} should be uint. However, in the arm_neon.h file, the return type of these functions is int. It caused an compilation error similar to the previous issue #71362 when using the -fno-lax-vector-conversions flag.
vqshrun_high_n_s{16/32/64}
uint
arm_neon.h
int
-fno-lax-vector-conversions
Clang version:
Debian clang version 15.0.7 Target: x86_64-pc-linux-gnu Thread model: posix InstalledDir: /usr/bin
Thank you for your reading.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Documentation: https://developer.arm.com/architectures/instruction-sets/intrinsics/#f:@navigationhierarchiessimdisa=[Neon]&q=qshrun_high_n
According to the ARM NEON documentation, the return type of
vqshrun_high_n_s{16/32/64}
should beuint
. However, in thearm_neon.h
file, the return type of these functions isint
. It caused an compilation error similar to the previous issue #71362 when using the-fno-lax-vector-conversions
flag.Clang version:
Thank you for your reading.
The text was updated successfully, but these errors were encountered: