Lines Matching refs:sym1
4828 /* True iff SYM0 represents the same entity as SYM1, or one that is
4829 no more defined than that of SYM1. */
4832 lesseq_defined_than (struct symbol *sym0, struct symbol *sym1)
4834 if (sym0 == sym1)
4836 if (sym0->domain () != sym1->domain ()
4837 || sym0->aclass () != sym1->aclass ())
4847 struct type *type1 = sym1->type ();
4849 const char *name1 = sym1->linkage_name ();
4859 return sym0->value_longest () == sym1->value_longest ()
4860 && equiv_types (sym0->type (), sym1->type ());
4865 const char *name1 = sym1->linkage_name ();
4867 && sym0->value_address () == sym1->value_address ());