numberToStringSigned() relies on undefined behavior and may return inaccurate results with inputs such as INT_MIN.
Created attachment 423967 [details] Patch
Created attachment 423972 [details] Patch
Created attachment 424020 [details] Patch
Comment on attachment 424020 [details] Patch I understand how this quiets the undefined behavior sanitizer, but I am sort of surprised that this actually avoids undefined behavior. I am surprised that the unary minus operation is defined so usefully on unsigned types.
(In reply to Darin Adler from comment #4) > Comment on attachment 424020 [details] > Patch > > I understand how this quiets the undefined behavior sanitizer, but I am sort > of surprised that this actually avoids undefined behavior. I am surprised > that the unary minus operation is defined so usefully on unsigned types. I followed the advice from UBSan: "cast to an unsigned type to negate this value to itself".
Committed r274878: <https://commits.webkit.org/r274878> All reviewed patches have been landed. Closing bug and clearing flags on attachment 424020 [details].
<rdar://problem/75742118>