use of org.mmtk.harness.lang.runtime.StackFrame in project JikesRVM by JikesRVM.
the class ExitOp method exec.
@Override
public void exec(Env env) {
StackFrame frame = env.top();
int rval = frame.get(operand).getIntValue();
if (rval == 0) {
Main.exitWithSuccess();
}
Main.exitWithFailure(rval);
}
Aggregations