From b2c58871c9fd3a6fe7f670b97af7708809477721 Mon Sep 17 00:00:00 2001 From: Blue Swirl Date: Sun, 25 Apr 2010 20:31:42 +0000 Subject: [PATCH] alpha: add missing 'break', spotted by clang analyzer Signed-off-by: Blue Swirl --- target-alpha/helper.c | 1 + 1 file changed, 1 insertion(+) 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;