forked from OSchip/llvm-project
				
			Make bugpoint emit a bugpoint-reduced-blocks.bc, because bugpoint itself
can crash during instruction simplification (for example if it creates a broken module). llvm-svn: 72362
This commit is contained in:
		
							parent
							
								
									5bd3f7b4a2
								
							
						
					
					
						commit
						6ee6f73973
					
				| 
						 | 
				
			
			@ -426,7 +426,10 @@ static bool DebugACrash(BugDriver &BD,  bool (*TestFn)(BugDriver &, Module *)) {
 | 
			
		|||
           E = BD.getProgram()->end(); I != E; ++I)
 | 
			
		||||
      for (Function::const_iterator FI = I->begin(), E = I->end(); FI !=E; ++FI)
 | 
			
		||||
        Blocks.push_back(FI);
 | 
			
		||||
    unsigned OldSize = Blocks.size();
 | 
			
		||||
    ReduceCrashingBlocks(BD, TestFn).reduceList(Blocks);
 | 
			
		||||
    if (Blocks.size() < OldSize)
 | 
			
		||||
      BD.EmitProgressBitcode("reduced-blocks");
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  // FIXME: This should use the list reducer to converge faster by deleting
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue