Bug 1126438: Annotate canClone() and clone() as MOZ_OVERRIDE, in MIR.h. r=ehsan

This commit is contained in:
Daniel Holbert 2015-01-27 11:53:25 -08:00
Родитель 5512694ec4
Коммит ecc505e336
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -5537,11 +5537,12 @@ class MHypot
return true;
}
bool canClone() const {
bool canClone() const MOZ_OVERRIDE {
return true;
}
MInstruction *clone(TempAllocator &alloc, const MDefinitionVector &inputs) const {
MInstruction *clone(TempAllocator &alloc,
const MDefinitionVector &inputs) const MOZ_OVERRIDE {
return MHypot::New(alloc, inputs);
}
};