mirror of https://github.com/aamine/cbc
* net/loveruby/cflat/ast/DefinedFunction.java: remove unused method #epilogueLabel.
git-svn-id: file:///Users/aamine/c/gitwork/public/cbc/trunk@4161 1b9489fe-b721-0410-924e-b54b9192deb8
This commit is contained in:
parent
2f7019356a
commit
9c1be1e20f
|
@ -1,3 +1,8 @@
|
|||
Mon Apr 27 02:09:09 2009 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* net/loveruby/cflat/ast/DefinedFunction.java: remove unused
|
||||
method #epilogueLabel.
|
||||
|
||||
Mon Apr 27 02:04:26 2009 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* net/loveruby/cflat/asm/Type.java: new class representing
|
||||
|
|
|
@ -10,7 +10,6 @@ public class DefinedFunction extends Function {
|
|||
protected Params params;
|
||||
protected BlockNode body;
|
||||
protected LocalScope scope;
|
||||
protected Label epilogueLabel;
|
||||
protected List<Stmt> ir;
|
||||
|
||||
public DefinedFunction(boolean priv,
|
||||
|
@ -21,7 +20,6 @@ public class DefinedFunction extends Function {
|
|||
super(priv, type, name);
|
||||
this.params = params;
|
||||
this.body = body;
|
||||
this.epilogueLabel = new Label();
|
||||
}
|
||||
|
||||
public boolean isDefined() {
|
||||
|
@ -57,10 +55,6 @@ public class DefinedFunction extends Function {
|
|||
return scope.allLocalVariables();
|
||||
}
|
||||
|
||||
public Label epilogueLabel() {
|
||||
return this.epilogueLabel;
|
||||
}
|
||||
|
||||
protected void _dump(Dumper d) {
|
||||
d.printMember("name", name);
|
||||
d.printMember("isPrivate", isPrivate);
|
||||
|
|
Loading…
Reference in New Issue