From: Blue Swirl Date: Sun, 25 Apr 2010 20:31:42 +0000 (+0000) Subject: alpha: add missing 'break', spotted by clang analyzer X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b2c58871c9fd3a6fe7f670b97af7708809477721;p=qemu.git alpha: add missing 'break', spotted by clang analyzer Signed-off-by: Blue Swirl --- diff --git a/target-alpha/helper.c b/target-alpha/helper.c index 46335cdf9c..9a039cb96b 100644 --- a/target-alpha/helper.c +++ b/target-alpha/helper.c @@ -466,6 +466,7 @@ int cpu_alpha_mtpr (CPUState *env, int iprn, uint64_t val, uint64_t *oldvalp) env->ipr[IPR_SYSPTBR] = val; else ret = -1; + break; case IPR_TBCHK: /* Read-only */ ret = -1;