On 12.08.2015 18:29, Alan Cox wrote:
> On Tue, 11 Aug 2015 16:16:43 +0200
> Philipp Klaus Krause wrote:
>
>> In standard C, each label has to be followed by a statement. HTis makes
>> a difference at the end of compoud statements.
>>
>> Not allowed:
>> {
>> label:
>> }
>>
>> Allowed:
>> {
>> labe
On Tue, 11 Aug 2015 16:16:43 +0200
Philipp Klaus Krause wrote:
> In standard C, each label has to be followed by a statement. HTis makes
> a difference at the end of compoud statements.
>
> Not allowed:
> {
> label:
> }
>
> Allowed:
> {
> label:;
> }
>
> SDCC currently allows both. The comment
On 11-08-2015 16:16, Philipp Klaus Krause wrote:
> In standard C, each label has to be followed by a statement. HTis makes
> a difference at the end of compoud statements.
>
> Not allowed:
> {
> label:
> }
>
> Allowed:
> {
> label:;
> }
>
> SDCC currently allows both. The comment in SDCC.y makes