mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
Bug 1038839 followup: Add missing MOZ_OVERRIDE annotation to mightAlias() impls in MIR.h. r=ehsan
This commit is contained in:
parent
9a5edfb4e7
commit
c818b19251
@ -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)
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user