diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2011-06-14 18:06:40 +0300 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2011-06-16 00:20:12 +0300 |
commit | b6fb147cc03a618757d3f02fb9c44287079da7ee (patch) | |
tree | 77b29a83fb9248e58b6144b071ab8b1ed1249c2d /target-alpha | |
parent | 990def582ba06cb0d87b89cb5b6c4a79bb61f0ee (diff) |
alpha/translate: remve unused variables
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-alpha')
-rw-r--r-- | target-alpha/translate.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/target-alpha/translate.c b/target-alpha/translate.c index ad6c2ca448..5d7454ce95 100644 --- a/target-alpha/translate.c +++ b/target-alpha/translate.c @@ -1663,7 +1663,7 @@ static ExitStatus translate_one(DisasContext *ctx, uint32_t insn) uint32_t palcode; int32_t disp21, disp16, disp12; uint16_t fn11; - uint8_t opc, ra, rb, rc, fpfn, fn7, fn2, islit, real_islit; + uint8_t opc, ra, rb, rc, fpfn, fn7, islit, real_islit; uint8_t lit; ExitStatus ret; @@ -1685,7 +1685,6 @@ static ExitStatus translate_one(DisasContext *ctx, uint32_t insn) fn11 = (insn >> 5) & 0x000007FF; fpfn = fn11 & 0x3F; fn7 = (insn >> 5) & 0x0000007F; - fn2 = (insn >> 5) & 0x00000003; LOG_DISAS("opc %02x ra %2d rb %2d rc %2d disp16 %6d\n", opc, ra, rb, rc, disp16); |