Home | History | Annotate | Download | only in config

Lines Matching full:fixp

1575   fixS *fixP;
1585 for (fixP = frchp->fix_root; fixP != NULL; fixP = fixP->fx_next)
1587 if (fixP->fx_addsy != NULL
1588 && fixP->fx_subsy != NULL
1589 && (! S_IS_DEFINED (fixP->fx_addsy)
1590 || ! S_IS_DEFINED (fixP->fx_subsy)))
1592 segT add_symbol_segment = S_GET_SEGMENT (fixP->fx_addsy);
1593 segT sub_symbol_segment = S_GET_SEGMENT (fixP->fx_subsy);
1595 if (! S_IS_DEFINED (fixP->fx_addsy)
1596 && S_IS_DEFINED (fixP->fx_subsy))
1598 as_bad_where (fixP->fx_file, fixP->fx_line,
1600 S_GET_NAME (fixP->fx_addsy), S_GET_NAME (fixP->fx_addsy),
1601 S_GET_NAME (fixP->fx_subsy), segment_name (sub_symbol_segment));
1603 else if (! S_IS_DEFINED (fixP->fx_subsy)
1604 && S_IS_DEFINED (fixP->fx_addsy))
1606 as_bad_where (fixP->fx_file, fixP->fx_line,
1608 S_GET_NAME (fixP->fx_subsy), S_GET_NAME (fixP->fx_addsy),
1609 segment_name (add_symbol_segment), S_GET_NAME (fixP->fx_subsy));
1613 as_bad_where (fixP->fx_file, fixP->fx_line,
1615 S_GET_NAME (fixP->fx_addsy), S_GET_NAME (fixP->fx_subsy),
1616 S_GET_NAME (fixP->fx_addsy), S_GET_NAME (fixP->fx_subsy));