From 8fb4873495277b566dc0a96d6eaf6a8ab1b9be88 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 46335cd..9a039cb 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; -- 2.7.4