Bug 1236522 - Handle MIRType_Bool32x4 in StringFromMIRType. r=nbp

Add a case for MIRType_Bool32x4 to the switch and remove the default case so we
get compiler warnings in the future when adding more MIR types.
This commit is contained in:
Jakob Stoklund Olesen 2016-01-05 08:51:43 -08:00
Родитель 9cb894a3c7
Коммит 02332a2395
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -541,11 +541,12 @@ StringFromMIRType(MIRType type)
return "Float32x4";
case MIRType_Int32x4:
return "Int32x4";
case MIRType_Bool32x4:
return "Bool32x4";
case MIRType_Doublex2:
return "Doublex2";
default:
MOZ_CRASH("Unknown MIRType.");
}
MOZ_CRASH("Unknown MIRType.");
}
static inline bool