Bug 1038839 followup: Add missing MOZ_OVERRIDE annotation to mightAlias() impls in MIR.h. r=ehsan

This commit is contained in:
Daniel Holbert 2015-03-18 16:44:03 -07:00
parent 9a5edfb4e7
commit c818b19251

View File

@ -7494,7 +7494,7 @@ class MElements
AliasSet getAliasSet() const MOZ_OVERRIDE {
return AliasSet::Load(AliasSet::ObjectFields);
}
bool mightAlias(const MDefinition *store) const;
bool mightAlias(const MDefinition *store) const MOZ_OVERRIDE;
ALLOW_CLONE(MElements)
};
@ -7682,7 +7682,7 @@ class MInitializedLength
AliasSet getAliasSet() const MOZ_OVERRIDE {
return AliasSet::Load(AliasSet::ObjectFields);
}
bool mightAlias(const MDefinition *store) const;
bool mightAlias(const MDefinition *store) const MOZ_OVERRIDE;
void computeRange(TempAllocator &alloc) MOZ_OVERRIDE;
@ -8186,7 +8186,7 @@ class MLoadElement
AliasSet getAliasSet() const MOZ_OVERRIDE {
return AliasSet::Load(AliasSet::Element);
}
bool mightAlias(const MDefinition *store) const;
bool mightAlias(const MDefinition *store) const MOZ_OVERRIDE;
ALLOW_CLONE(MLoadElement)
};