search for: namedsect

Displaying 1 result from an estimated 1 matches for "namedsect".

Did you mean: namedset
2010 May 04
0
[LLVMdev] MCStreamer itnerface
...cisions about where to place data based of the content. For special scenarios, like constructor/destructor a set of hints could be defined to produce the expected behavior. i.e. struct SectionHint {}; // used by assemblers to put symbols into the // section specified by a section directive struct NamedSectionHint : SectionHint { // then name of the section to put the symbol in std::string Name; }; struct OrderedNamedHint : NamedSection { // the order to place the symbol into the section when finally linked, // each different "ordered section" should produce a separate section //...