reg_cache_t -> struct reg_cache

Remove misleading typedef and redundant suffix from struct reg_cache.
This commit is contained in:
Zachary T Welch
2009-11-13 08:44:08 -08:00
parent de3fb2f3bc
commit 74d09617b9
27 changed files with 57 additions and 57 deletions

View File

@@ -94,7 +94,7 @@ enum
struct armv7m_common
{
int common_magic;
reg_cache_t *core_cache;
struct reg_cache *core_cache;
enum armv7m_mode core_mode;
int exception_number;
struct swjdp_common swjdp_info;
@@ -134,7 +134,7 @@ struct armv7m_core_reg
struct armv7m_common *armv7m_common;
};
reg_cache_t *armv7m_build_reg_cache(target_t *target);
struct reg_cache *armv7m_build_reg_cache(target_t *target);
enum armv7m_mode armv7m_number_to_mode(int number);
int armv7m_mode_to_number(enum armv7m_mode mode);