Closed
Description
Test case:
https://godbolt.org/z/1fvYPxY37
#include<math.h>
double test1(double x) {
return log(pow(x, -3));
}
double test2(double x) {
return -3 * log(x);
}
My expectation is that the output of test1
will be the same as test2
.