Re: [PATCH v3 06/20] target/arm: Replace CPSR_ERET_MASK with aarch32_cpsr_valid_mask

2020-02-07 Thread Peter Maydell
On Mon, 3 Feb 2020 at 14:47, Richard Henderson wrote: > > CPSR_ERET_MASK was a useless renaming of CPSR_RESERVED. > The function also takes into account bits that the cpu > does not support. > > Signed-off-by: Richard Henderson > --- > target/arm/cpu.h | 2 -- > target/arm/op_helper.c | 5

[PATCH v3 06/20] target/arm: Replace CPSR_ERET_MASK with aarch32_cpsr_valid_mask

2020-02-03 Thread Richard Henderson
CPSR_ERET_MASK was a useless renaming of CPSR_RESERVED. The function also takes into account bits that the cpu does not support. Signed-off-by: Richard Henderson --- target/arm/cpu.h | 2 -- target/arm/op_helper.c | 5 - 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ta