search for: exitloop

Displaying 2 results from an estimated 2 matches for "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
...eakPatternMatch(LoopT *LoopRep, BlockT *LoopHeader); > + int loopcontPatternMatch(LoopT *LoopRep, BlockT *LoopHeader); > + //int loopWithoutBreak(BlockT *); > + > + void handleLoopbreak (BlockT *ExitingBlock, LoopT *ExitingLoop, > + BlockT *ExitBlock, LoopT *exitLoop, BlockT *landBlock); > + void handleLoopcontBlock(BlockT *ContingBlock, LoopT *contingLoop, > + BlockT *ContBlock, LoopT *contLoop); > + bool isSameloopDetachedContbreak(BlockT *Src1Block, BlockT *Src2Block); > + int handleJumpintoIf(BlockT *HeadBlock, Block...