зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
9cb894a3c7
Коммит
02332a2395
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче