svf-lib 1.0.2405 → 1.0.2406
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
CHANGED
|
Binary file
|
|
@@ -217,7 +217,7 @@ public:
|
|
|
217
217
|
/// Check bit value of val start with 0x7F000000, filter by 0xFF000000
|
|
218
218
|
static inline bool isVirtualMemAddress(u32_t val)
|
|
219
219
|
{
|
|
220
|
-
return (val & 0xff000000) == AddressMask
|
|
220
|
+
return (val & 0xff000000) == AddressMask;
|
|
221
221
|
}
|
|
222
222
|
|
|
223
223
|
};
|
|
Binary file
|