Fix unintentional fall-through cases in get_cacheinfo

These appear to be unintended side effects of PR #1091, probably causing #1232
This commit is contained in:
Martin Kroeker 2017-07-11 15:39:15 +02:00 committed by GitHub
parent 482015f8d6
commit 4a012c3d20
1 changed files with 14 additions and 12 deletions

View File

@ -643,6 +643,7 @@ int get_cacheinfo(int type, cache_info_t *cacheinfo){
LDTB.size = 4096;
LDTB.associative= 4;
LDTB.linesize = 32;
break;
case 0x66 :
LD1.size = 8;
LD1.associative = 4;
@ -681,6 +682,7 @@ int get_cacheinfo(int type, cache_info_t *cacheinfo){
LITB.size = 4096;
LITB.associative= 0;
LITB.linesize = 8;
break;
case 0x77 :
LC1.size = 16;
LC1.associative = 4;