Fix the disassembly of MSP430 extended index addressing mode.
[deliverable/binutils-gdb.git] / gdb / regset.h
index 2d11b8570bbf0e3f87b65d325295c632507b318e..03dbdaac692be9fa9106c5e9f02753cef3d0a128 100644 (file)
@@ -1,6 +1,6 @@
 /* Manage register sets.
 
-   Copyright (C) 2003, 2004, 2007, 2008 Free Software Foundation, Inc.
+   Copyright (C) 2003-2014 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
 struct gdbarch;
 struct regcache;
 
+/* Data structure for the supported register notes in a core file.  */
+struct core_regset_section
+{
+  const char *sect_name;
+  int size;
+  const char *human_name;
+};
+
 /* Data structure describing a register set.  */
 
 typedef void (supply_regset_ftype) (const struct regset *, struct regcache *,
@@ -42,20 +50,6 @@ struct regset
 
   /* Function collecting values in a register set from a register cache.  */
   collect_regset_ftype *collect_regset;
-
-  /* Architecture associated with the register set.  */
-  struct gdbarch *arch;
 };
 
-/* Allocate a fresh 'struct regset' whose supply_regset function is
-   SUPPLY_REGSET, and whose collect_regset function is COLLECT_REGSET.
-   If the regset has no collect_regset function, pass NULL for
-   COLLECT_REGSET.
-
-   The object returned is allocated on ARCH's obstack.  */
-
-extern struct regset *regset_alloc (struct gdbarch *arch,
-                                    supply_regset_ftype *supply_regset,
-                                    collect_regset_ftype *collect_regset);
-
 #endif /* regset.h */
This page took 0.034083 seconds and 4 git commands to generate.