[llvm-commits] CVS: llvm/include/Support/MathExtras.h

Brian Gaeke gaeke at cs.uiuc.edu
Tue Jul 20 20:15:24 PDT 2004



Changes in directory llvm/include/Support:

MathExtras.h updated: 1.12 -> 1.13

---
Log message:

Add prototypes for platform-independent wrappers for isinf().
Patch contributed by Bill Wendling.


---
Diffs of the changes:  (+4 -0)

Index: llvm/include/Support/MathExtras.h
diff -u llvm/include/Support/MathExtras.h:1.12 llvm/include/Support/MathExtras.h:1.13
--- llvm/include/Support/MathExtras.h:1.12	Tue Jun 22 19:25:24 2004
+++ llvm/include/Support/MathExtras.h	Tue Jul 20 22:15:14 2004
@@ -43,6 +43,10 @@
 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





More information about the llvm-commits mailing list