Provide prototypes for IsNAN() wrapper.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14339 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Brian Gaeke 2004-06-23 00:25:24 +00:00
parent 30135b2c81
commit 7764f4b2e0
2 changed files with 8 additions and 0 deletions

View File

@ -39,6 +39,10 @@ inline bool isPowerOf2(int64_t C, unsigned &getPow) {
return false;
}
// Platform-independent wrappers for the C99 isnan() function.
int IsNAN (float f);
int IsNAN (double d);
} // End llvm namespace
#endif

View File

@ -39,6 +39,10 @@ inline bool isPowerOf2(int64_t C, unsigned &getPow) {
return false;
}
// Platform-independent wrappers for the C99 isnan() function.
int IsNAN (float f);
int IsNAN (double d);
} // End llvm namespace
#endif