alpha: remove dead assignments, spotted by clang analyzer

Value stored is never read.

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
Blue Swirl 2010-04-25 20:30:17 +00:00
parent 183aa45407
commit f88fe4e370
2 changed files with 4 additions and 9 deletions

View file

@ -79,9 +79,7 @@ static void pal_reset (CPUState *env)
static void do_swappal (CPUState *env, uint64_t palid)
{
pal_handler_t *pal_handler;
int status;
status = 0;
switch (palid) {
case 0 ... 2:
pal_handler = &pal_handlers[palid];