Fixed a typo in a comment and in a method name. Made ClassWriter.invokeProcessors static since it no longer relies on any non-static fields.
This commit is contained in:
committed by
Roman Shevchenko
parent
f643b1c870
commit
c32fce0d02
@@ -118,7 +118,7 @@ public class BasicBlock implements IGraphNode {
|
||||
block.removePredecessor(this);
|
||||
}
|
||||
|
||||
// FIXME: unify block comparisons: id or direkt equality
|
||||
// FIXME: unify block comparisons: id or direct equality
|
||||
public void replaceSuccessor(BasicBlock oldBlock, BasicBlock newBlock) {
|
||||
for (int i = 0; i < succs.size(); i++) {
|
||||
if (succs.get(i).id == oldBlock.id) {
|
||||
|
||||
Reference in New Issue
Block a user