mirror of https://gitee.com/openkylin/qemu.git
target/microblaze: Renumber D_FLAG
ESS[DS] is bit 19 in the manual, but the manual uses big-endian bit numbering. This corresponds to bit 12 in little-endian numbering. Let the comment about matching the ESR be true by renumbering it. Tested-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
e11bd71f89
commit
64603d1eff
|
@ -264,10 +264,10 @@ struct CPUMBState {
|
||||||
/* MSR_UM (1 << 11) */
|
/* MSR_UM (1 << 11) */
|
||||||
/* MSR_VM (1 << 13) */
|
/* MSR_VM (1 << 13) */
|
||||||
/* ESR_ESS_MASK [11:5] -- unwind into iflags for unaligned excp */
|
/* ESR_ESS_MASK [11:5] -- unwind into iflags for unaligned excp */
|
||||||
|
#define D_FLAG (1 << 12) /* Bit in ESR. */
|
||||||
#define DRTI_FLAG (1 << 16)
|
#define DRTI_FLAG (1 << 16)
|
||||||
#define DRTE_FLAG (1 << 17)
|
#define DRTE_FLAG (1 << 17)
|
||||||
#define DRTB_FLAG (1 << 18)
|
#define DRTB_FLAG (1 << 18)
|
||||||
#define D_FLAG (1 << 19) /* Bit in ESR. */
|
|
||||||
|
|
||||||
/* TB dependent CPUMBState. */
|
/* TB dependent CPUMBState. */
|
||||||
#define IFLAGS_TB_MASK (D_FLAG | BIMM_FLAG | IMM_FLAG | \
|
#define IFLAGS_TB_MASK (D_FLAG | BIMM_FLAG | IMM_FLAG | \
|
||||||
|
|
Loading…
Reference in New Issue