Examples of UnusedVariableElimination


Examples of org.teavm.optimization.UnusedVariableElimination

            if (cls == null) {
                return null;
            }
            for (MethodHolder method : cls.getMethods()) {
                new GlobalValueNumbering().optimize(method, method.getProgram());
                new UnusedVariableElimination().optimize(method, method.getProgram());
            }
            cache.put(name, cls);
        }
        return cls;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.