diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2019-10-26 05:45:00 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2019-10-26 05:45:00 +0000 |
commit | 02538e5a056a1cea081f09f9bc0629ea02538979 (patch) | |
tree | 282dc7d3ab0918f7746a65000724b5dbaeed74a8 /sys/arch/amd64 | |
parent | f121177d682cf98b467353c6662c1b6a02eb7f74 (diff) |
Correct some ASM in a comment
Diffstat (limited to 'sys/arch/amd64')
-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; |