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