search for: bugpointisinterrupted

Displaying 1 result from an estimated 1 matches for "bugpointisinterrupted".

2008 Jul 25
2
[LLVMdev] Slightly improve bugpoint output
...er.cpp (working copy) @@ -28,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() <...