This implements the DWARF 5 feature described in:
http://dwarfstd.org/ShowIssue.php?issue=141212.1
To support recognizing anonymous structs:
struct A { struct { // Anonymous struct int y; }; } a;
This patch adds support in CGDebugInfo::CreateLimitedType(...) for this new flag and an accompanying test to verify this feature.
This should just be CHECK: if it stands by itself.
It would be better to match both composite types, establish which one is the inner one, and then verify that only that one has the attribute.