- Notifications
You must be signed in to change notification settings - Fork 15.3k
Open
Labels
floating-pointFloating-point mathFloating-point mathgood first issuehttps://github.com/llvm/llvm-project/contributehttps://github.com/llvm/llvm-project/contributellvm:optimizationsmissed-optimization
Description
% cat test.cc #include <math.h> int main() { float f = nexttoward(1.0, 0.0); return f; } % out/gn/bin/clang -c test.cc -O2 -S -o - | grep nexttow bl _nexttoward Expected: No call to nexttoward
Actual: Call
gcc can optimize it: https://godbolt.org/z/1jPbcfbxx
Metadata
Metadata
Assignees
Labels
floating-pointFloating-point mathFloating-point mathgood first issuehttps://github.com/llvm/llvm-project/contributehttps://github.com/llvm/llvm-project/contributellvm:optimizationsmissed-optimization