rdar://69122891
Created attachment 409946 [details] proposed patch.
Comment on attachment 409946 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=409946&action=review r=me with nit > Source/JavaScriptCore/dfg/DFGConstantFoldingPhase.cpp:-381 > - Undo please. > Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp:4654 > + RELEASE_ASSERT(Options::validateBoundsCheckElimination()); Does this really do anything?
Comment on attachment 409946 [details] proposed patch. View in context: https://bugs.webkit.org/attachment.cgi?id=409946&action=review Thanks for the review. >> Source/JavaScriptCore/dfg/DFGConstantFoldingPhase.cpp:-381 >> - > > Undo please. will do. >> Source/JavaScriptCore/ftl/FTLLowerDFGToB3.cpp:4654 >> + RELEASE_ASSERT(Options::validateBoundsCheckElimination()); > > Does this really do anything? Just a sanity check that this node should never be emitted if the option isn't enabled. I suppose there's no strong reason it needs to be a RELEASE_ASSERT. I'll change it to an ASSERT.
Landed in r267726: <http://trac.webkit.org/r267726>.