Ejemplo n.º 1
0
void JSONImporter::printScop(raw_ostream &OS, Scop &S) const {
  S.print(OS);
  for (std::vector<std::string>::const_iterator I = newAccessStrings.begin(),
                                                E = newAccessStrings.end();
       I != E; I++)
    OS << "New access function '" << *I << "'detected in JSCOP file\n";
}
Ejemplo n.º 2
0
void JSONExporter::printScop(raw_ostream &OS, Scop &S) const { S.print(OS); }