svf-lib 1.0.2402 → 1.0.2403
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
|