diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2023-04-22 18:26:18 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2023-04-22 18:26:18 +0000 |
commit | 1008d227333ec2c90b297e57a6702bdf125487f4 (patch) | |
tree | a2bd51c1c7ae8a46bc0603944608c97efdc10cd4 /sys | |
parent | 7ff30f366bf246dd18f5b881c94c389b4702b5a2 (diff) |
Teach the disassembler about xrstors, xsavec, and xsaves
ok mlarkin@
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/amd64/amd64/db_disasm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/amd64/db_disasm.c b/sys/arch/amd64/amd64/db_disasm.c index 8a0be937e42..f552a1c8818 100644 --- a/sys/arch/amd64/amd64/db_disasm.c +++ b/sys/arch/amd64/amd64/db_disasm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: db_disasm.c,v 1.23 2023/04/10 04:21:19 jsg Exp $ */ +/* $OpenBSD: db_disasm.c,v 1.24 2023/04/22 18:26:17 guenther Exp $ */ /* $NetBSD: db_disasm.c,v 1.11 1996/05/03 19:41:58 christos Exp $ */ /* @@ -148,8 +148,8 @@ struct inst db_Grp9[] = { }; char * db_GrpA[] = { - "", "cmpxchg8b", "", "", - "", "", "rdrand", "rdseed" + "", "cmpxchg8b", "", "xrstors", + "xsavec", "xsaves", "rdrand", "rdseed" }; char * db_GrpB[] = { |