svf-lib 1.0.2354 → 1.0.2356
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-osx/bin/ae +0 -0
- package/SVF-osx/bin/cfl +0 -0
- package/SVF-osx/bin/dvf +0 -0
- package/SVF-osx/bin/llvm2svf +0 -0
- package/SVF-osx/bin/mta +0 -0
- package/SVF-osx/bin/saber +0 -0
- package/SVF-osx/bin/svf-ex +0 -0
- package/SVF-osx/bin/wpa +0 -0
- package/SVF-osx/include/AE/Core/NumericValue.h +3 -0
- package/SVF-osx/include/AE/Svfexe/AEDetector.h +3 -0
- package/SVF-osx/include/AE/Svfexe/AbstractInterpretation.h +1 -0
- package/SVF-osx/include/SVF-LLVM/SVFIRBuilder.h +1 -0
- package/SVF-osx/include/WPA/WPAStat.h +2 -2
- package/SVF-osx/lib/libSvfCore.3.1.dylib +0 -0
- package/SVF-osx/lib/libSvfLLVM.3.1.dylib +0 -0
- package/package.json +1 -1
package/SVF-osx/bin/ae
CHANGED
|
Binary file
|
package/SVF-osx/bin/cfl
CHANGED
|
Binary file
|
package/SVF-osx/bin/dvf
CHANGED
|
Binary file
|
package/SVF-osx/bin/llvm2svf
CHANGED
|
Binary file
|
package/SVF-osx/bin/mta
CHANGED
|
Binary file
|
package/SVF-osx/bin/saber
CHANGED
|
Binary file
|
package/SVF-osx/bin/svf-ex
CHANGED
|
Binary file
|
package/SVF-osx/bin/wpa
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
|
|
Binary file
|