-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disable /OPT:ICF on windows, it merges identical functions breaking i… #49622
Conversation
…call symbol lookup.
fixes #49588 |
runtime (Libraries Test Run release mono Linux x64 Debug) failure is #49583 |
gcc has an option or attribute to consider address-taken functions not unique, and avoid folding them. I think SQL Server has this very same problem as Mono, and also disables ICF to workaround it. Alas. |
runtime (Libraries Test Run release mono windows x64 Debug) is #49569 |
It is a correctness fix with schedule impact so I'm landing it now but I opened an issue to reexamine the optimization before release. |
Understood and I expect no relief upstream but couldn't ignore it, sorry. |
…call symbol lookup.