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

References

tools/lldb/source/Plugins/InstrumentationRuntime/UBSan/UBSanRuntime.cpp
  194   if (!stop_reason_description.size()) {
  195     stop_reason_description = "Undefined behavior detected";
  197     stop_reason_description[0] = toupper(stop_reason_description[0]);
  197     stop_reason_description[0] = toupper(stop_reason_description[0]);
  198     for (unsigned I = 1; I < stop_reason_description.size(); ++I)
  199       if (stop_reason_description[I] == '-')
  200         stop_reason_description[I] = ' ';
  202   return stop_reason_description;