Add prototypes for platform-independent wrappers for isinf().

Patch contributed by Bill Wendling.

llvm-svn: 15055
This commit is contained in:
Brian Gaeke 2004-07-21 03:15:14 +00:00
parent 94394bea47
commit 38bd15e507

View File

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