[CLASSES]: Remove some now unused functions

Signed-off-by: Arnaldo Carvalho de Melo <acme@mandriva.com>
This commit is contained in:
Arnaldo Carvalho de Melo 2006-12-18 17:14:31 -02:00
parent 9b12f89fa9
commit a7f819ccb2
2 changed files with 0 additions and 30 deletions

View File

@ -1222,33 +1222,6 @@ void cus__for_each_cu(struct cus *self,
}
}
void cus__print_classes(struct cus *self, const unsigned int tag)
{
struct cu *cu_pos;
list_for_each_entry(cu_pos, &self->cus, node) {
struct class *class_pos;
list_for_each_entry(class_pos, &cu_pos->classes, tag.node)
if (class_pos->tag.tag == tag &&
class_pos->name != NULL) {
if (tag == DW_TAG_structure_type)
class__find_holes(class_pos);
class__print(class_pos);
}
}
}
void cus__print_functions(struct cus *self)
{
struct cu *cu;
struct function *function;
list_for_each_entry(cu, &self->cus, node)
list_for_each_entry(function, &cu->functions, tag.node)
function__print(function, 1, 1, 1);
}
static void oom(const char *msg)
{
fprintf(stderr, "pahole: out of memory(%s)\n", msg);

View File

@ -154,9 +154,6 @@ extern struct class *cu__find_class_by_name(const struct cu *cu,
const char *name);
extern int class__is_struct(const struct class *self,
struct class **typedef_alias);
extern void cus__print_classes(struct cus *cus,
const unsigned int tag);
extern void cus__print_functions(struct cus *cus);
extern struct class *cus__find_class_by_name(const struct cus *self,
const char *name);
extern void cu__account_inline_expansions(struct cu *self);