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

References

lib/ObjectYAML/COFFEmitter.cpp
   91       if (Sec.Alignment) {
   92         if (Sec.Alignment > 8192) {
   96         if (!isPowerOf2_32(Sec.Alignment)) {
  100         Sec.Header.Characteristics |= (Log2_32(Sec.Alignment) + 1) << 20;
lib/ObjectYAML/COFFYAML.cpp
  566   IO.mapOptional("Alignment", Sec.Alignment, 0U);
tools/obj2yaml/coff2yaml.cpp
  177     NewYAMLSection.Alignment = (1U << Shift) >> 1;
  178     assert(NewYAMLSection.Alignment <= 8192);