author | Jim Blandy <jimb@mozilla.com> |
Mon, 12 Mar 2018 18:08:57 -0700 | |
changeset 462574 | da9491adea8584c9780cb57fad6022ba7b871e2e |
parent 462573 | 2adda34a5051e4fd5bedbac021c3a712125a43af |
child 462575 | 27993b0b6e51ce8d6ad22ed4d0d1471e286b5872 |
push id | 9165 |
push user | asasaki@mozilla.com |
push date | Thu, 26 Apr 2018 21:04:54 +0000 |
treeherder | mozilla-beta@064c3804de2e [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jorendorff |
bugs | 1444604 |
milestone | 61.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/js/src/vm/SavedStacks.cpp +++ b/js/src/vm/SavedStacks.cpp @@ -135,17 +135,17 @@ LiveSavedFrameCache::find(JSContext* cx, // since we're going to push new cache entries for all frames younger // than frameIter, we must pop it anyway. frames->popBack(); // If the frame's bit was set, the frame should always have an entry in // the cache. (If we purged the entire cache because its SavedFrames had // been captured for a different compartment, then we would have // returned early above.) - MOZ_ASSERT(!frames->empty()); + MOZ_ALWAYS_TRUE(!frames->empty()); } // The youngest valid frame may have run some code, so its current pc may // not match its cache entry's pc. In this case, just treat it as a miss. No // older frame has executed any code; it would have been necessary to pop // this frame for that to happen, but this frame's bit is set. if (pc != frames->back().pc) { frames->popBack();