Skip to content

Better bounds inference on checked arrays #272

Open
@john-h-kastner

Description

@john-h-kastner
int *a[];
void b() { a[0][0]; }

converts to

_Array_ptr<int> a;
void b() { a[0][0]; }

a should be something like _Array_Ptr<int> a _Checked[1]

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions