| 762 | #ifdef OPT_GRAPH_DEBUG_EXT |
| 763 | |
| 764 | static char const * target_name( TARGET * t ) |
| 765 | { |
| 766 | static char buf[ 1000 ]; |
| 767 | if ( t->flags & T_FLAG_INTERNAL ) |
| 768 | { |
| 769 | sprintf( buf, "%s (internal node)", object_str( t->name ) ); |
| 770 | return buf; |
| 771 | } |
| 772 | return object_str( t->name ); |
| 773 | } |
| 774 | |
| 775 | |
| 776 | /* |
no test coverage detected