search for: exitloops

Displaying 2 results from an estimated 2 matches for "exitloops".

Did you mean: exitloop
2008 Jul 25
2
[LLVMdev] Slightly improve bugpoint output
...,6 +28,7 @@ #include "llvm/Support/FileUtilities.h" #include "llvm/Support/CommandLine.h" #include <fstream> +#include <sstream> #include <set> using namespace llvm; @@ -469,7 +470,9 @@ } else { if (BugpointIsInterrupted) goto ExitLoops; - std::cout << "Checking instruction '" << I->getName() << "': "; + std::ostringstream SS; I->print(SS); + + std::cout << "Checking instruction '" << SS.str() << "'...
2012 Jul 16
3
[LLVMdev] RFC: LLVM incubation, or requirements for committing new backends
Tom, I think it might be productive to fork this thread to discuss making the requirements for upstreaming a new LLVM target more explicit and open. I'd also like to gauge interest in an idea I've discussed privately with a few community members, namely the concept of having a semi-official "incubation" system whereby proposed backends could get a trial run before becoming part