diff options
Diffstat (limited to 'gdb/arch/amd64.h')
-rw-r--r-- | gdb/arch/amd64.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gdb/arch/amd64.h b/gdb/arch/amd64.h index 695660c..60c17eb 100644 --- a/gdb/arch/amd64.h +++ b/gdb/arch/amd64.h @@ -21,7 +21,13 @@ #include "gdbsupport/tdesc.h" #include <stdint.h> -target_desc *amd64_create_target_description (uint64_t xcr0, bool is_x32, - bool is_linux, bool segments); +/* Create amd64 target descriptions according to XSTATE_BV. If + IS_X32 is true, create the x32 ones. If IS_LINUX is true, create + target descriptions for Linux. If SEGMENTS is true, then include + the "org.gnu.gdb.i386.segments" feature registers. */ + +target_desc *amd64_create_target_description (uint64_t xstate_bv, + bool is_x32, bool is_linux, + bool segments); #endif /* GDB_ARCH_AMD64_H */ |