Displaying 1 result from an estimated 1 matches for "_foo_attrs".
2015 Aug 10
2
Clang attributes issue
....
Hope you don't have any problems with reading my message now.
Aaron,
Not long ago I met a problem related to clang attributes implementation. I
tried to add a new CXX11 attribute with separated namespace like here:
def FooAligned : InheritableAttr {
let Spellings = [CXX11<"_Foo_attrs", "aligned">];
….
But I was not able to do it because name “aligned” was used in another
well-known attribute. After some research I found that the problem was in
file “AttrParserStringSwitches.inc” generated by TableGen. Its content was
unaware about namespaces. As result m...