[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: glr.c: work around ICC limitations
From: |
Akim Demaille |
Subject: |
Re: glr.c: work around ICC limitations |
Date: |
Wed, 19 Sep 2018 21:53:05 +0200 |
> Le 18 sept. 2018 à 20:02, Akim Demaille <address@hidden> a écrit :
>
> ICC sees that `longjmp(buf, 1);` does not return, it sees that
> `abort();` does not either, but fails to see it for
> `longjmp(buf, 1); abort();`
This should have read
but fails to see it for `longjmp(buf, 1), abort();`
with a comma, not a semicolon :(