comparison graal/com.oracle.truffle.sl/src/com/oracle/truffle/sl/SLNodeFactory.java @ 13276:06afa0db90b3

SL: removed unneccessary field in InlinableCallNode (reported by Stefan Marr)
author Christian Humer <christian.humer@gmail.com>
date Mon, 09 Dec 2013 17:30:50 +0100
parents 71991b7a0f14
children e076c87ab175
comparison
equal deleted inserted replaced
13275:bd5c996b5d25 13276:06afa0db90b3
55 this.source = source; 55 this.source = source;
56 } 56 }
57 57
58 public void setParser(Parser parser) { 58 public void setParser(Parser parser) {
59 this.parser = parser; 59 this.parser = parser;
60 }
61
62 public CallTarget findFunction(String name) {
63 return context.getFunctionRegistry().lookup(name);
64 } 60 }
65 61
66 public void startFunction() { 62 public void startFunction() {
67 frameDescriptor = new FrameDescriptor(); 63 frameDescriptor = new FrameDescriptor();
68 } 64 }