diff --git a/js/src/jit/MIR.h b/js/src/jit/MIR.h index b5c4bd8604fb..7b48f5ffcd36 100644 --- a/js/src/jit/MIR.h +++ b/js/src/jit/MIR.h @@ -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) };