Optimzations make assumption about function names #130172
Labels
llvm:optimizations
question
A question, not bug report. Check out https://llvm.org/docs/GettingInvolved.html instead!
Given the following module as an input
optimization with a minimal set of passes "simplifycfg,instcombine,reassociate,gvn" will produce the following module:
NOTE: The return of this function is the IEEE Hex form of 0.33046510807172985 which is the mathematical Cosine of 1.234. Thus, the optimizations have Assumed that the function named
cos
is in fact the mathematical function of the same name common in C runtime libraries - but it doesn't KNOW that. It could well be that this is just a function that happens to have the namecos
(and has NO reliance on the C runtime). The expectation is that this does something completely different that might even have side effects so ignoring the return value and substituting a const is just WRONG behavior. (One would hope that subsequent optimization stages would not remove the call due to the possibility of side effects, but ignoring the return and substituting a const value is still wrong)The text was updated successfully, but these errors were encountered: