summaryrefslogtreecommitdiffstats
path: root/js/src/jit
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2019-06-28 23:02:15 -0400
committerGaming4JC <g4jc@hyperbola.info>2019-06-28 23:02:15 -0400
commit35d29c05c59057fc84be41ec94f2e3bc31ddef44 (patch)
tree7f58864f0cd14040d23a64add100eefd8ff6538b /js/src/jit
parent01e1fcf522219bf1b2d7d2dcc6209db3d270a182 (diff)
downloadUXP-35d29c05c59057fc84be41ec94f2e3bc31ddef44.tar
UXP-35d29c05c59057fc84be41ec94f2e3bc31ddef44.tar.gz
UXP-35d29c05c59057fc84be41ec94f2e3bc31ddef44.tar.lz
UXP-35d29c05c59057fc84be41ec94f2e3bc31ddef44.tar.xz
UXP-35d29c05c59057fc84be41ec94f2e3bc31ddef44.zip
Issue #1142 - Cleanup unused debug code for unboxed objects
Also fixes an assertion during compile if debug is enabled since unboxed objects have been removed.
Diffstat (limited to 'js/src/jit')
-rw-r--r--js/src/jit/BaselineIC.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/jit/BaselineIC.cpp b/js/src/jit/BaselineIC.cpp
index d95d08edc..2f20ffa4f 100644
--- a/js/src/jit/BaselineIC.cpp
+++ b/js/src/jit/BaselineIC.cpp
@@ -289,7 +289,7 @@ DoTypeUpdateFallback(JSContext* cx, BaselineFrame* frame, ICUpdatedStub* stub, H
case ICStub::SetProp_Native:
case ICStub::SetProp_NativeAdd:
case ICStub::SetProp_Unboxed: {
- MOZ_ASSERT(obj->isNative() || obj->is<UnboxedPlainObject>());
+ MOZ_ASSERT(obj->isNative());
jsbytecode* pc = stub->getChainFallback()->icEntry()->pc(script);
if (*pc == JSOP_SETALIASEDVAR || *pc == JSOP_INITALIASEDLEXICAL)
id = NameToId(EnvironmentCoordinateName(cx->caches.envCoordinateNameCache, script, pc));