ffi: fix spelling mistake (#833)
authorBill Roberts <152999275+billatarm@users.noreply.github.com>
Sat, 1 Jun 2024 17:33:28 +0000 (12:33 -0500)
committerGitHub <noreply@github.com>
Sat, 1 Jun 2024 17:33:28 +0000 (13:33 -0400)
Signed-off-by: Bill Roberts <bill.roberts@arm.com>
src/aarch64/ffi.c

index 8661a352b7cb31459fa2bb6ad049d6d44f9a744b..b13738e389eb0d31d99b5eb541b84a83697c24c7 100644 (file)
@@ -682,7 +682,7 @@ ffi_call_int (ffi_cif *cif, void (*fn)(void), void *orig_rvalue,
   else if (flags & AARCH64_RET_NEED_COPY)
     rsize = 16;
 
-  /* Allocate consectutive stack for everything we'll need.
+  /* Allocate consecutive stack for everything we'll need.
      The frame uses 40 bytes for: lr, fp, rvalue, flags, sp */
   context = alloca (sizeof(struct call_context) + stack_bytes + 40 + rsize);
   stack = context + 1;