mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 01:49:41 +00:00
Disable GCC Analyzer test
The compiler is crashing on dll.cpp
This commit is contained in:
parent
680956e134
commit
72cb91718f
@ -558,6 +558,10 @@ if [[ (-z "$HAVE_ANALYZE") ]]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
# Disable Analyzer for the time being. We are catching a compile crash.
|
||||
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95031.
|
||||
HAVE_ANALYZE=0
|
||||
|
||||
# GCC 8.0; maybe Clang?
|
||||
rm -f "$TMPDIR/test.exe" &>/dev/null
|
||||
if [[ (-z "$HAVE_CET") ]]; then
|
||||
|
@ -260,7 +260,7 @@ void AbstractGroup<T>::SimultaneousMultiply(T *results, const T &base, const Int
|
||||
exponents.reserve(expCount);
|
||||
unsigned int i;
|
||||
|
||||
for (i=0; i<expCount; i++)
|
||||
for (i=0; expBegin && i<expCount; i++)
|
||||
{
|
||||
CRYPTOPP_ASSERT(expBegin->NotNegative());
|
||||
exponents.push_back(WindowSlider(*expBegin++, InversionIsFast(), 0));
|
||||
|
Loading…
Reference in New Issue
Block a user