git: 53a31c87df9f - main - libdtrace: Fix some CPU register number definitions to match the kernel

From: Mark Johnston <markj_at_FreeBSD.org>
Date: Wed, 12 Oct 2022 20:07:21 UTC
The branch main has been updated by markj:

URL: https://cgit.FreeBSD.org/src/commit/?id=53a31c87df9f0f77d26a5d35cb8322c8e78033ce

commit 53a31c87df9f0f77d26a5d35cb8322c8e78033ce
Author:     Mark Johnston <markj@FreeBSD.org>
AuthorDate: 2022-10-12 19:59:09 +0000
Commit:     Mark Johnston <markj@FreeBSD.org>
CommitDate: 2022-10-12 20:06:37 +0000

    libdtrace: Fix some CPU register number definitions to match the kernel
    
    MFC after:      1 week
---
 cddl/lib/libdtrace/regs_x86.d | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/cddl/lib/libdtrace/regs_x86.d b/cddl/lib/libdtrace/regs_x86.d
index 3f625f9f4445..4140c133b53e 100644
--- a/cddl/lib/libdtrace/regs_x86.d
+++ b/cddl/lib/libdtrace/regs_x86.d
@@ -80,11 +80,11 @@ inline int R_R0 = R_EAX;
 inline int R_R1 = R_EBX;
 #pragma D binding "1.0" R_R1
 
-inline int R_RSP = 18 + 1 + 20;
+inline int R_RSP = 18 + 1 + 24;
 #pragma D binding "1.0" R_RSP
-inline int R_RFL = 18 + 1 + 19;
+inline int R_RFL = 18 + 1 + 23;
 #pragma D binding "1.0" R_RFL
-inline int R_RIP = 18 + 1 + 17;
+inline int R_RIP = 18 + 1 + 21;
 #pragma D binding "1.0" R_RIP
 inline int R_RAX = 18 + 1 + 14;
 #pragma D binding "1.0" R_RAX