forked from OSchip/llvm-project
this works with backedges to the existing entry block alot better
llvm-svn: 24270
This commit is contained in:
parent
e373163e95
commit
8e66c0c8a9
|
@ -46,8 +46,9 @@ namespace {
|
|||
virtual bool runOnFunction(Function &F) {
|
||||
if (!F.isExternal()) {
|
||||
//give us a clean block
|
||||
BasicBlock& bbhead = F.getEntryBlock();
|
||||
bbhead.splitBasicBlock(bbhead.begin());
|
||||
BasicBlock* bbold = &F.getEntryBlock();
|
||||
BasicBlock* bbnew = new BasicBlock("allocablock", &F, &F.getEntryBlock());
|
||||
new BranchInst(bbold, bbnew);
|
||||
|
||||
//find the instructions
|
||||
std::list<Instruction*> worklist;
|
||||
|
|
Loading…
Reference in New Issue