diff options
author | 2019-10-26 05:44:59 +0000 | |
---|---|---|
committer | 2019-10-26 05:44:59 +0000 | |
commit | c31be7ff34c37cf02927a23c8f61384dfda3c410 (patch) | |
tree | 5a4254fc334b9817917cd32a4719520220523725 | |
parent | use ftp -N option; ok jca (diff) | |
download | wireguard-openbsd-c31be7ff34c37cf02927a23c8f61384dfda3c410.tar.xz wireguard-openbsd-c31be7ff34c37cf02927a23c8f61384dfda3c410.zip |
Correct some ASM in a comment
-rw-r--r-- | sys/arch/amd64/amd64/db_trace.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/db_trace.c b/sys/arch/amd64/amd64/db_trace.c index 050fee7188c..b51016f45df 100644 --- a/sys/arch/amd64/amd64/db_trace.c +++ b/sys/arch/amd64/amd64/db_trace.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_trace.c,v 1.43 2019/02/02 14:32:58 visa Exp $ */ +/* $OpenBSD: db_trace.c,v 1.44 2019/10/26 05:44:59 guenther Exp $ */ /* $NetBSD: db_trace.c,v 1.1 2003/04/26 18:39:27 fvdl Exp $ */ /* @@ -156,7 +156,7 @@ db_stack_trace_print(db_expr_t addr, boolean_t have_addr, db_expr_t count, offset = 1; if (instr == 0xe5894855 || - /* enter: pushl %rbp, movq %rsp, %rbp */ + /* enter: pushq %rbp, movq %rsp, %rbp */ (instr & 0x00ffffff) == 0x00e58948 /* enter+1: movq %rsp, %rbp */) { offset = 0; |