Let the compiler generate more comparison operators in JSC now that we support C++20.
Pull request: https://github.com/WebKit/WebKit/pull/17417
Committed 267645@main (e9e93692891c): <https://commits.webkit.org/267645@main> Reviewed commits have been landed. Closing PR #17417 and removing active labels.
<rdar://problem/115001681>
This caused a 3MB binary size increase and I am unclear why. The compiler should in theory generate identical code to the one we had.. At first I thought it was because I newly inlined 2 of the comparison operators. However, moving them back out of line didn't reduce binary size significantly.
Maybe the generated ones are always implicitly generated inline?