All pastes #2091202 Raw Edit

n00b

public cpp v1 · immutable
#2091202 ·published 2011-10-18 22:37 UTC
rendered paste body
BasicBlock::iterator BI = BB.begin();BasicBlock::iterator E = BB.end();Instruction* I;for (; I != E;){  I = BI++;  // Do some analysis >with I and get V  I->replaceAllUsesWith(V);  I->eraseFromParent();}