Lines Matching defs:label
3309 static void check_label_declaration(struct position pos, struct symbol *label)
3311 switch (label->namespace) {
3313 if (label->stmt)
3315 sparse_error(pos, "label '%s' was not declared", show_ident(label->ident));
3792 sparse_error(stmt->pos, "bad asm label");
3876 struct symbol *label = stmt->goto_label;
3878 if (!label) {
3879 // no label associated, may be a computed goto
3884 check_label_declaration(stmt->pos, label);