reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/TargetLoweringObjectFileImpl.cpp
  567     if (Attrs.hasAttribute("bss-section") && Kind.isBSS()) {
  568       SectionName = Attrs.getAttribute("bss-section").getValueAsString();
  569     } else if (Attrs.hasAttribute("rodata-section") && Kind.isReadOnly()) {
  570       SectionName = Attrs.getAttribute("rodata-section").getValueAsString();
  571     } else if (Attrs.hasAttribute("relro-section") && Kind.isReadOnlyWithRel()) {
  572       SectionName = Attrs.getAttribute("relro-section").getValueAsString();
  573     } else if (Attrs.hasAttribute("data-section") && Kind.isData()) {
  574       SectionName = Attrs.getAttribute("data-section").getValueAsString();