Bug 1139181 - Add missing MIRTypes to StringFromMIRType(). r=efaust

This commit is contained in:
Sean Stangl 2015-03-03 14:39:00 +01:00
parent 14264f2e02
commit 194d2a6d60

View File

@ -487,6 +487,8 @@ StringFromMIRType(MIRType type)
return "MagicUninitializedLexical";
case MIRType_Value:
return "Value";
case MIRType_ObjectOrNull:
return "ObjectOrNull";
case MIRType_None:
return "None";
case MIRType_Slots:
@ -495,10 +497,16 @@ StringFromMIRType(MIRType type)
return "Elements";
case MIRType_Pointer:
return "Pointer";
case MIRType_Int32x4:
return "Int32x4";
case MIRType_Shape:
return "Shape";
case MIRType_ObjectGroup:
return "ObjectGroup";
case MIRType_Float32x4:
return "Float32x4";
case MIRType_Int32x4:
return "Int32x4";
case MIRType_Doublex2:
return "Doublex2";
default:
MOZ_CRASH("Unknown MIRType.");
}