Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUse types when inferring the bounds for lvalue targets #344
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
We have updated the specification of checking of bounds declarations. In the specification, the CheckLValue function infers bounds for the values stored in lvalues (RB, in the specification). In the Checked C implementation, we use the type of the value to infer bounds in some cases. For example, we can infer bounds for Ptr values or array-typed values. The specification needs to be updated to reflect this.