mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-23 03:59:12 +00:00
Add prototypes for platform-independent wrappers for isinf().
Patch contributed by Bill Wendling. llvm-svn: 15055
This commit is contained in:
parent
94394bea47
commit
38bd15e507
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user