svf-lib 1.0.2404 → 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.
|
@@ -184,12 +184,12 @@ public:
|
|
|
184
184
|
|
|
185
185
|
static inline bool isNullMem(u32_t addr)
|
|
186
186
|
{
|
|
187
|
-
return
|
|
187
|
+
return addr == NullMemAddr;
|
|
188
188
|
}
|
|
189
189
|
|
|
190
190
|
static inline bool isInvalidMem(u32_t addr)
|
|
191
191
|
{
|
|
192
|
-
return
|
|
192
|
+
return addr == InvalidMemAddr;
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
|
|
Binary file
|
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
|