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

@@ -49,7 +49,7 @@ struct mips32_common
{
uint32_t common_magic;
void *arch_info;
reg_cache_t *core_cache;
struct reg_cache *core_cache;
struct mips_ejtag ejtag_info;
uint32_t core_regs[MIPS32NUMCOREREGS];
@@ -132,7 +132,7 @@ int mips32_init_arch_info(target_t *target,
int mips32_restore_context(target_t *target);
int mips32_save_context(target_t *target);
reg_cache_t *mips32_build_reg_cache(target_t *target);
struct reg_cache *mips32_build_reg_cache(target_t *target);
int mips32_run_algorithm(struct target_s *target,
int num_mem_params, struct mem_param *mem_params,