Open
Description
This issue was copied from checkedc/checkedc-clang#967
Update the following in the section on where
clause in the Checked C spec:
- Add the description of the new keyword
_And
that is used to separate twowhere
clause facts:
where-clause:
where-clause-fact [_And where-clause-fact]
- Update the syntax of the
where-clause-fact
to:
where-clause-fact:
bounds-expression
equality-expression equality-op equality-expression
- Add the syntax of
equality-expression
from the C11 spec:
equality-expression:
relational-expression
equality-expression == equality-expression
equality-expression != equality-expression