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

@@ -30,11 +30,11 @@
reg_arch_type_t *reg_arch_types = NULL;
reg_t* register_get_by_name(reg_cache_t *first,
reg_t* register_get_by_name(struct reg_cache *first,
const char *name, bool search_all)
{
int i;
reg_cache_t *cache = first;
struct reg_cache *cache = first;
while (cache)
{
@@ -53,9 +53,9 @@ reg_t* register_get_by_name(reg_cache_t *first,
return NULL;
}
reg_cache_t** register_get_last_cache_p(reg_cache_t **first)
struct reg_cache** register_get_last_cache_p(struct reg_cache **first)
{
reg_cache_t **cache_p = first;
struct reg_cache **cache_p = first;
if (*cache_p)
while (*cache_p)