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
clang 13.0.0's scan-build reports:
Logic error "Result of operation is garbage or undefined" in crypto_aesctr_stream_cipherblock_use.
crypto_aesctr_stream_cipherblock_use
This is discussed in False clang-scan warning, likely from be64enc libcperciva#372.
TL;DR: clang doesn't realize that writing a 32-bit integer will initialize all 4 bytes.
Logic error "Assigned value is garbage or undefined" in _mm_loadu_si64 (called from cpusupport-X86-AESNI.c)
_mm_loadu_si64
cpusupport-X86-AESNI.c
This is discussed in False clang-scan warning in _mm_loadu_si64 libcperciva#423.
TL;DR: clang-scan doesn't like its own <emmintrin.h> header.
<emmintrin.h>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
clang 13.0.0's scan-build reports:
Logic error "Result of operation is garbage or undefined" in
crypto_aesctr_stream_cipherblock_use
.This is discussed in False clang-scan warning, likely from be64enc libcperciva#372.
TL;DR: clang doesn't realize that writing a 32-bit integer will initialize all 4 bytes.
Logic error "Assigned value is garbage or undefined" in
_mm_loadu_si64
(called fromcpusupport-X86-AESNI.c
)This is discussed in False clang-scan warning in _mm_loadu_si64 libcperciva#423.
TL;DR: clang-scan doesn't like its own
<emmintrin.h>
header.The text was updated successfully, but these errors were encountered: