Skip to content

Commit

Permalink
fix copy/paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
ndrewh committed Dec 27, 2024
1 parent 9d52c65 commit 7d1af39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suite/tests/tools.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ dump_ucontext(ucontext_t *ucxt, bool is_sve, int vl_bytes)
# ifdef MACOS
assert(false); /* NYI */
# else
struct _aarch64_ctx *head = (struct _aarch64_ctx *)(ucxt->uc_mcontext64.__reserved);
struct _aarch64_ctx *head = (struct _aarch64_ctx *)(ucxt->uc_mcontext.RESERVED);
assert(head->magic == FPSIMD_MAGIC);
assert(head->size == sizeof(struct fpsimd_context));

Expand Down

0 comments on commit 7d1af39

Please sign in to comment.