/*
 * Machine-dependent interpreter code for the alpha
 * md_init - Machine-dependent initialization code
 * generate_trampoline, which returns the routine invoked to enter the 
 *                   interpreter, for the Java interpreter
 */

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

#include "toba.h"
#include "toba_classfile_Method.h"
#include "toba_classfile_Field.h"
#include "runtime.h"
#include "sthreads.h"
#include "md.h"

#ifdef LINUX
#include <fpu_control.h>
#endif

void md_init() {
#ifdef LINUX
  __setfpucw(_FPU_IEEE);
#endif
}

/*
 * codegen_init() - choose a code generator for the architecture 
 */
void codegen_init() 
{
   /* No code generator here. */
}
