Revert r140083 and r140084 until buildbots can be fixed.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140094 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Bill Wendling 2011-09-19 23:30:41 +00:00
parent f11750633d
commit a846585050
2 changed files with 2 additions and 12 deletions

View File

@ -664,13 +664,7 @@ ExtractCodeRegion(const std::vector<BasicBlock*> &code) {
// * Pass in uses as args // * Pass in uses as args
// 3) Move code region, add call instr to func // 3) Move code region, add call instr to func
// //
for (std::vector<BasicBlock*>::const_iterator BlocksToExtract.insert(code.begin(), code.end());
I = code.begin(), E = code.end(); I != E; ++I) {
BasicBlock *BB = *I;
BlocksToExtract.insert(BB);
if (InvokeInst *II = dyn_cast<InvokeInst>(BB->getTerminator()))
BlocksToExtract.insert(II->getUnwindDest());
}
Values inputs, outputs; Values inputs, outputs;
@ -794,7 +788,6 @@ Function* llvm::ExtractLoop(DominatorTree &DT, Loop *L, bool AggregateArgs) {
/// ExtractBasicBlock - slurp a basic block into a brand new function /// ExtractBasicBlock - slurp a basic block into a brand new function
/// ///
Function* llvm::ExtractBasicBlock(BasicBlock *BB, bool AggregateArgs) { Function* llvm::ExtractBasicBlock(BasicBlock *BB, bool AggregateArgs) {
if (BB->isLandingPad()) return 0;
std::vector<BasicBlock*> Blocks; std::vector<BasicBlock*> Blocks;
Blocks.push_back(BB); Blocks.push_back(BB);
return CodeExtractor(0, AggregateArgs).ExtractCodeRegion(Blocks); return CodeExtractor(0, AggregateArgs).ExtractCodeRegion(Blocks);

View File

@ -10,9 +10,6 @@ Cont: ; preds = %EB
ret i32 %V ret i32 %V
Unw: ; preds = %EB Unw: ; preds = %EB
%exn = landingpad {i8*, i32} personality i32 (...)* @__gcc_personality_v0 unwind
catch i8* null
resume { i8*, i32 } %exn
} }
declare i32 @__gcc_personality_v0(...)