Fix fakematches in JKRExpHeap and d_scope

This commit is contained in:
LagoLunatic
2026-08-17 15:06:39 -04:00
parent e3550e01e1
commit ae817a9745
3 changed files with 42 additions and 67 deletions
+1 -1
View File
@@ -9,7 +9,7 @@
// Align X to the previous N bytes (N must be power of two)
#define ALIGN_PREV(X, N) ((X) & ~((N)-1))
// Align X to the next N bytes (N must be power of two)
#define ALIGN_NEXT(X, N) ALIGN_PREV(((X) + (N)-1), N)
#define ALIGN_NEXT(X, N) ALIGN_PREV(((X) + (N-1)), N)
#define IS_ALIGNED(X, N) (((X) & ((N)-1)) == 0)
#define IS_NOT_ALIGNED(X, N) (((X) & ((N)-1)) != 0)