From: Maks Naumov Date: Fri, 11 Apr 2014 18:05:55 +0000 (+0300) Subject: missing 'break' in initalen() X-Git-Tag: v1.3.0~15^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bd3a470498b57e88b94c3cfae5461b7b3728d100;p=yasm missing 'break' in initalen() --- diff --git a/tools/genperf/perfect.c b/tools/genperf/perfect.c index 7cd68678..a9a14c02 100644 --- a/tools/genperf/perfect.c +++ b/tools/genperf/perfect.c @@ -750,6 +750,7 @@ static void initalen( case 0: *alen = 1; *blen = 1; + break; case 1: case 2: case 3: case 4: case 5: case 6: case 7: case 8: *alen = (form->perfect == NORMAL_HP) ? *smax : *smax/2; *blen = *smax/2;