[llvm-commits] CVS: llvm/lib/Support/Compressor.cpp IsInf.cpp IsNAN.cpp

Chris Lattner lattner at cs.uiuc.edu
Wed May 24 10:04:35 PDT 2006



Changes in directory llvm/lib/Support:

Compressor.cpp updated: 1.19 -> 1.20
IsInf.cpp updated: 1.7 -> 1.8
IsNAN.cpp updated: 1.4 -> 1.5
---
Log message:

Patches to make the LLVM sources more -pedantic clean.  Patch provided
by Anton Korobeynikov!  This is a step towards closing PR786: http://llvm.cs.uiuc.edu/PR786 .


---
Diffs of the changes:  (+3 -3)

 Compressor.cpp |    2 +-
 IsInf.cpp      |    2 +-
 IsNAN.cpp      |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/lib/Support/Compressor.cpp
diff -u llvm/lib/Support/Compressor.cpp:1.19 llvm/lib/Support/Compressor.cpp:1.20
--- llvm/lib/Support/Compressor.cpp:1.19	Wed Jul 27 01:12:33 2005
+++ llvm/lib/Support/Compressor.cpp	Wed May 24 12:04:04 2006
@@ -23,7 +23,7 @@
 
 enum CompressionTypes {
   COMP_TYPE_NONE  = '0',
-  COMP_TYPE_BZIP2 = '2',
+  COMP_TYPE_BZIP2 = '2'
 };
 
 static int getdata(char*& buffer, size_t &size,


Index: llvm/lib/Support/IsInf.cpp
diff -u llvm/lib/Support/IsInf.cpp:1.7 llvm/lib/Support/IsInf.cpp:1.8
--- llvm/lib/Support/IsInf.cpp:1.7	Mon May 16 01:45:57 2005
+++ llvm/lib/Support/IsInf.cpp	Wed May 24 12:04:04 2006
@@ -42,4 +42,4 @@
 int IsInf (float f)  { return isinf (f); }
 int IsInf (double d) { return isinf (d); }
 
-}; // end namespace llvm;
+} // end namespace llvm;


Index: llvm/lib/Support/IsNAN.cpp
diff -u llvm/lib/Support/IsNAN.cpp:1.4 llvm/lib/Support/IsNAN.cpp:1.5
--- llvm/lib/Support/IsNAN.cpp:1.4	Thu Apr 21 17:52:05 2005
+++ llvm/lib/Support/IsNAN.cpp	Wed May 24 12:04:04 2006
@@ -31,4 +31,4 @@
 int IsNAN (float f)  { return isnan (f); }
 int IsNAN (double d) { return isnan (d); }
 
-}; // end namespace llvm;
+} // end namespace llvm;






More information about the llvm-commits mailing list