mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-14 00:32:55 +00:00
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:
parent
30135b2c81
commit
7764f4b2e0
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user