svf-lib 1.0.2357 → 1.0.2358
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/SVF-linux-x86_64/bin/ae +0 -0
- package/SVF-linux-x86_64/include/AE/Core/NumericValue.h +3 -0
- package/SVF-linux-x86_64/include/AE/Svfexe/AEDetector.h +3 -0
- package/SVF-linux-x86_64/include/AE/Svfexe/AbstractInterpretation.h +1 -0
- package/SVF-linux-x86_64/include/SVF-LLVM/SVFIRBuilder.h +1 -0
- package/SVF-linux-x86_64/include/WPA/WPAStat.h +2 -2
- package/SVF-linux-x86_64/lib/libSvfCore.so.3.1 +0 -0
- package/package.json +1 -1
package/SVF-linux-x86_64/bin/ae
CHANGED
|
Binary file
|
|
@@ -446,7 +446,10 @@ public:
|
|
|
446
446
|
friend BoundedInt operator/(const BoundedInt& lhs, const BoundedInt& rhs)
|
|
447
447
|
{
|
|
448
448
|
if (rhs.is_zero())
|
|
449
|
+
{
|
|
449
450
|
assert(false && "divide by zero");
|
|
451
|
+
abort();
|
|
452
|
+
}
|
|
450
453
|
else if (!lhs.is_infinity() && !rhs.is_infinity())
|
|
451
454
|
return lhs._iVal / rhs._iVal;
|
|
452
455
|
else if (!lhs.is_infinity() && rhs.is_infinity())
|
|
Binary file
|