This is an archive of the discontinued LLVM Phabricator instance.

Fix implementation of the likely resolution of core issue 253 to support class based arrays.
ClosedPublic

Authored by itessier on Oct 25 2016, 6:25 PM.

Details

Reviewers
rsmith
Summary

D16552 implemented the likely resolution of core issue 253, but didn't include support for class based array fields. E.g.:

struct A {
}

struct B {

A a[2];

}

const B b; // Fails, but should pass.

Diff Detail

Event Timeline

itessier updated this revision to Diff 75821.Oct 25 2016, 6:25 PM
itessier retitled this revision from to Fix implementation of the likely resolution of core issue 253 to support class based arrays..
itessier updated this object.
itessier added a subscriber: cfe-commits.
rsmith accepted this revision.Oct 28 2016, 11:28 AM
rsmith edited edge metadata.
This revision is now accepted and ready to land.Oct 28 2016, 11:28 AM
rsmith closed this revision.Oct 28 2016, 12:21 PM

Committed as rL285430.