summaryrefslogtreecommitdiffstats
path: root/js/src/jit/MIR.h
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@wolfbeast.com>2020-01-11 13:09:17 +0100
committerwolfbeast <mcwerewolf@wolfbeast.com>2020-01-11 13:50:23 +0100
commitcffb44547ae7997e5eaf71c644bd626eeb3bba00 (patch)
treed1a3ea470e38a92585641a9e4407b16d510da908 /js/src/jit/MIR.h
parent81f3185e0e2d72e147af0d39cded0c5b2a32bb8f (diff)
downloadUXP-cffb44547ae7997e5eaf71c644bd626eeb3bba00.tar
UXP-cffb44547ae7997e5eaf71c644bd626eeb3bba00.tar.gz
UXP-cffb44547ae7997e5eaf71c644bd626eeb3bba00.tar.lz
UXP-cffb44547ae7997e5eaf71c644bd626eeb3bba00.tar.xz
UXP-cffb44547ae7997e5eaf71c644bd626eeb3bba00.zip
Simplify some alias sets in IonMonkey.
Diffstat (limited to 'js/src/jit/MIR.h')
-rw-r--r--js/src/jit/MIR.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/js/src/jit/MIR.h b/js/src/jit/MIR.h
index 6c376d528..7b0ed65f2 100644
--- a/js/src/jit/MIR.h
+++ b/js/src/jit/MIR.h
@@ -9460,12 +9460,6 @@ class MStoreElementHole
TRIVIAL_NEW_WRAPPERS
NAMED_OPERANDS((0, object), (1, elements), (2, index), (3, value))
- AliasSet getAliasSet() const override {
- // StoreElementHole can update the initialized length, the array length
- // or reallocate obj->elements.
- return AliasSet::Store(AliasSet::ObjectFields | AliasSet::Element);
- }
-
ALLOW_CLONE(MStoreElementHole)
};
@@ -9496,9 +9490,6 @@ class MFallibleStoreElement
TRIVIAL_NEW_WRAPPERS
NAMED_OPERANDS((0, object), (1, elements), (2, index), (3, value))
- AliasSet getAliasSet() const override {
- return AliasSet::Store(AliasSet::ObjectFields | AliasSet::Element);
- }
bool strict() const {
return strict_;
}