/*
 * Machine-dependent interpreter code for the SPARC
 * md_init does machine-dependent initializtion
 * generate_trampoline returns the routine invoked to enter the interpreter
 */

#include <stddef.h>
#include <stdarg.h>
#include <assert.h>

#include "toba.h"

#include "runtime.h"
#include "sthreads.h"
#include "md.h"

/*
 * md_init - do machine-dependent initialization
 */
void
md_init() {
}

/*
 * codegen_init() - choose a code generator for the architecture 
 */
void codegen_init() 
{
#ifdef OPTION_JIT
    Initialize__ek3Oa(); /* This is the JIT code generator */
#endif /* OPTION_JIT */
}
