Allow Alpha target to use supervisor and executive mode micro-ops.

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3389 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
j_mayer 2007-10-14 08:50:17 +00:00
parent e63ecc6f68
commit bb6f6792bf
1 changed files with 6 additions and 6 deletions

View File

@ -190,16 +190,16 @@ static GenOpFunc *gen_op_st##width[] = { \
#define OP_LD_TABLE(width) \
static GenOpFunc *gen_op_ld##width[] = { \
&gen_op_ld##width##_kernel, \
&gen_op_ld##width##_user, /* executive */ \
&gen_op_ld##width##_data, /* supervisor */ \
&gen_op_ld##width##_data, /* user */ \
&gen_op_ld##width##_executive, \
&gen_op_ld##width##_supervisor, \
&gen_op_ld##width##_user, \
}
#define OP_ST_TABLE(width) \
static GenOpFunc *gen_op_st##width[] = { \
&gen_op_st##width##_kernel, \
&gen_op_st##width##_user, /* executive */ \
&gen_op_st##width##_data, /* supervisor */ \
&gen_op_st##width##_data, /* user */ \
&gen_op_st##width##_executive, \
&gen_op_st##width##_supervisor, \
&gen_op_st##width##_user, \
}
#endif