Commit bb6f6792bfa5ee7e3526fa3a23c622296e8bff1a
1 parent
e63ecc6f
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
Showing
1 changed file
with
6 additions
and
6 deletions
target-alpha/translate.c
... | ... | @@ -190,16 +190,16 @@ static GenOpFunc *gen_op_st##width[] = { \ |
190 | 190 | #define OP_LD_TABLE(width) \ |
191 | 191 | static GenOpFunc *gen_op_ld##width[] = { \ |
192 | 192 | &gen_op_ld##width##_kernel, \ |
193 | - &gen_op_ld##width##_user, /* executive */ \ | |
194 | - &gen_op_ld##width##_data, /* supervisor */ \ | |
195 | - &gen_op_ld##width##_data, /* user */ \ | |
193 | + &gen_op_ld##width##_executive, \ | |
194 | + &gen_op_ld##width##_supervisor, \ | |
195 | + &gen_op_ld##width##_user, \ | |
196 | 196 | } |
197 | 197 | #define OP_ST_TABLE(width) \ |
198 | 198 | static GenOpFunc *gen_op_st##width[] = { \ |
199 | 199 | &gen_op_st##width##_kernel, \ |
200 | - &gen_op_st##width##_user, /* executive */ \ | |
201 | - &gen_op_st##width##_data, /* supervisor */ \ | |
202 | - &gen_op_st##width##_data, /* user */ \ | |
200 | + &gen_op_st##width##_executive, \ | |
201 | + &gen_op_st##width##_supervisor, \ | |
202 | + &gen_op_st##width##_user, \ | |
203 | 203 | } |
204 | 204 | #endif |
205 | 205 | ... | ... |