We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c896a5 commit 1d607a4Copy full SHA for 1d607a4
winsup/cygwin/math/isinf.c
@@ -1,7 +1,8 @@
1
int
2
isinf (double x)
3
{
4
- return __builtin_isinf_sign (x);
+// A temporary workaround to resolve recursion issue.
5
+ return 0; // __builtin_isinf_sign (x);
6
}
7
8
0 commit comments