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

References

lib/ExecutionEngine/Interpreter/ExternalFunctions.cpp
  344   GV.IntVal = APInt(32, strlen(FmtStr));
  346     switch (*FmtStr) {
  349       sprintf(OutputBuffer++, "%c", *FmtStr++);
  352       sprintf(OutputBuffer, "%c%c", *FmtStr, *(FmtStr+1));
  352       sprintf(OutputBuffer, "%c%c", *FmtStr, *(FmtStr+1));
  353       FmtStr += 2; OutputBuffer += 2;
  359       *FB++ = *FmtStr++;
  360       char Last = *FB++ = *FmtStr++;
  367         Last = *FB++ = *FmtStr++;
  402         errs() << "<unknown printf code '" << *FmtStr << "'!>";