Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Only do fp$ optimization in the main module (#2720) | Alon Zakai | 2020-04-07 | 1 | -0/+58 |
Weak symbols and interposition etc. mean that we should not replace an fp$ call with a symbol from the module itself if there is a chance there is another symbol that would have overridden it. In side modules this risk exists and so this PR makes us stop doing that. In main modules it is ok because they are loaded first and so any symbol they provide will "win" over others anyhow. |