* Create a LABEL template entry. */
| 653 | * Create a LABEL template entry. |
| 654 | */ |
| 655 | static Entry makeLabelEntry(const char *label) |
| 656 | { |
| 657 | Entry entry; |
| 658 | entry.kind = ENTRY_LABEL; |
| 659 | entry.length = 0; |
| 660 | entry.label = dupString(label); |
| 661 | return entry; |
| 662 | } |
| 663 | |
| 664 | /* |
| 665 | * Create a DEBUG template entry. |
no test coverage detected