From e0f73563718b0c80070275e54fe762f00bd5265a Mon Sep 17 00:00:00 2001 From: Lilith Orion Hafner Date: Sat, 14 Oct 2023 15:36:07 -0500 Subject: [PATCH] Update src/julia_internal.h --- src/julia_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/julia_internal.h b/src/julia_internal.h index a20ac449d5b32..204674c6d495a 100644 --- a/src/julia_internal.h +++ b/src/julia_internal.h @@ -217,7 +217,7 @@ static inline uint64_t cycleclock(void) JL_NOTSAFEPOINT #define NOP5_OVERRIDE_NOP ".byte 0x0f, 0x1f, 0x44, 0x00, 0x00\n\t" uint64_t low, high; // This instruction sequence is promised by rr to be patchable. rr can usually - // also patch `rdtsc` in regular code, but without the proceeding nop, there could + // also patch `rdtsc` in regular code, but without the preceding nop, there could // be an interfering branch into the middle of rr's patch region. Using this // sequence prevents a massive rr-induced slowdown if the compiler happens to emit // an unlucky pattern. See https://github.com/rr-debugger/rr/pull/3580.