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

References

lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
  302   if (Value < LF_NUMERIC) {
  304     Streamer->EmitIntValue(Value, 2);
  306   } else if (Value <= std::numeric_limits<uint16_t>::max()) {
  309     Streamer->EmitIntValue(Value, 2);
  311   } else if (Value <= std::numeric_limits<uint32_t>::max()) {
  314     Streamer->EmitIntValue(Value, 4);
  319     Streamer->EmitIntValue(Value, 8);