Closed
Bug 1923710
Opened 1 month ago
Closed 1 month ago
[Outreachy] Replace sumprecise condition in JSObject.cpp
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
133 Branch
Tracking | Status | |
---|---|---|
firefox-esr128 | --- | unaffected |
firefox131 | --- | unaffected |
firefox132 | --- | unaffected |
firefox133 | --- | fixed |
People
(Reporter: dminor, Assigned: sarahngima77)
References
(Blocks 1 open bug, Regression)
Details
(Keywords: regression)
Attachments
(1 file)
Bug 1923146 accidentally removed the check for sumPrecise in JSObject.cpp, we should add it back in here:
if (key == JSProto_Math && !JS::Prefs::experimental_math_sumprecise() &&
id == NameToId(cx->names().sumPrecise)) {
return true;
}
Assignee | ||
Comment 1•1 month ago
|
||
I'll work on this
Comment 2•1 month ago
|
||
:moyotawanda, since you are the author of the regressor, bug 1923146, could you take a look?
For more information, please visit BugBot documentation.
Flags: needinfo?(moyotawanda)
Comment 4•1 month ago
|
||
Set release status flags based on info from the regressing bug 1923146
status-firefox131:
--- → unaffected
status-firefox132:
--- → unaffected
status-firefox133:
--- → affected
status-firefox-esr128:
--- → unaffected
Assignee | ||
Comment 5•1 month ago
|
||
Updated•1 month ago
|
Assignee: nobody → sarahngima77
Status: NEW → ASSIGNED
Pushed by dminor@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/9f03ea44806e
Re-add sumPrecise check. r=dminor
Comment 7•1 month ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 1 month ago
Resolution: --- → FIXED
Target Milestone: --- → 133 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•