oops, fix very bad mistake, using part of HS roots that don't exist!

This commit is contained in:
Ryan Fleury
2025-06-02 14:00:47 -07:00
parent becb61f00d
commit cff99f5431
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -346,7 +346,7 @@ C_LINKAGE void __asan_unpoison_memory_region(void const volatile *addr, size_t s
#else
# error Missing pointer-to-integer cast for this architecture.
#endif
#define PtrFromInt(i) (void*)((U8*)0 + (i))
#define PtrFromInt(i) (void*)(i)
#define Compose64Bit(a,b) ((((U64)a) << 32) | ((U64)b));
#define AlignPow2(x,b) (((x) + (b) - 1)&(~((b) - 1)))