Sujet : Re: question about linker
De : ike (at) *nospam* sdf.org (Ike Naar)
Groupes : comp.lang.cDate : 06. Dec 2024, 19:11:02
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <slrnvl6fhl.rlm.ike@iceland.freeshell.org>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
User-Agent : slrn/1.0.3 (Patched for libcanlock3) (NetBSD)
On 2024-12-04, Bart <
bc@freeuk.com> wrote:
The C language is one of the most quirky ones around full of apparently
ridiculous things. Why shouldn't you be able to write this for example:
>
{
....
L:
}
>
This stupid rule means that EVERY label in my generated code needs to be
written as L:; instead of just L:
Not EVERY label; since you generate the code, you know when the label will be
followed by a statement; in which case you don't need to write the semicolon.