Arg, sparc doesn't have correct things in math.h!

llvm-svn: 6729
This commit is contained in:
Chris Lattner 2003-06-17 00:03:56 +00:00
parent 66d086cc1e
commit 91ada7bbb3

View File

@ -17,6 +17,6 @@ int target_isinf(double x) {
}
int main() {
printf("%d %d\n", target_isinf(1234.42), target_isinf(INFINITY));
printf("%d %d\n", target_isinf(1234.42), target_isinf(1.0/1.0e-1000));
return 0;
}