forked from mirrors/gecko-dev
Qualify a call to has(FloatRegister) inside SpecializedRegSet to avoid a gcc ICE that seems to randomly manifest from time to time. No bug, r=me as trivial
--HG-- extra : rebase_source : b9bc2e779153329251fa86d1754de9760bd38689
This commit is contained in:
parent
599ee96a71
commit
e26f18ecaf
1 changed files with 1 additions and 1 deletions
|
|
@ -920,7 +920,7 @@ class SpecializedRegSet<Accessors, RegisterSet> : public Accessors
|
|||
takeUnchecked(reg);
|
||||
}
|
||||
void take(FloatRegister reg) {
|
||||
MOZ_ASSERT(has(reg));
|
||||
MOZ_ASSERT(this->has(reg));
|
||||
takeUnchecked(reg);
|
||||
}
|
||||
void take(AnyRegister reg) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue