diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2019-02-15 10:00:52 +0000 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2019-02-18 11:00:44 +1100 |
commit | be13d3026abe5a0dcd12c9639658a87a3b417769 (patch) | |
tree | 966f6012631e2f2eeba5410be145df52cc5682cd /target/ppc/cpu.h | |
parent | c5ba06a391127647d4b5d40f8261bad070a80821 (diff) |
target/ppc: Remove vscr_nj and vscr_sat
These macros are no longer used.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Message-Id: <20190215100058.20015-12-mark.cave-ayland@ilande.co.uk>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target/ppc/cpu.h')
-rw-r--r-- | target/ppc/cpu.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h index 78af7e4608..1c883fa836 100644 --- a/target/ppc/cpu.h +++ b/target/ppc/cpu.h @@ -689,8 +689,6 @@ enum { /* Vector status and control register */ #define VSCR_NJ 16 /* Vector non-java */ #define VSCR_SAT 0 /* Vector saturation */ -#define vscr_nj (((env->vscr) >> VSCR_NJ) & 0x1) -#define vscr_sat (((env->vscr) >> VSCR_SAT) & 0x1) /*****************************************************************************/ /* BookE e500 MMU registers */ |