[llvm-commits] CVS: llvm/lib/System/DynamicLibrary.cpp MappedFile.cpp Memory.cpp Path.cpp Process.cpp Program.cpp Signals.cpp TimeValue.cpp

Misha Brukman brukman at cs.uiuc.edu
Thu Apr 21 15:48:46 PDT 2005



Changes in directory llvm/lib/System:

DynamicLibrary.cpp updated: 1.10 -> 1.11
MappedFile.cpp updated: 1.3 -> 1.4
Memory.cpp updated: 1.3 -> 1.4
Path.cpp updated: 1.15 -> 1.16
Process.cpp updated: 1.3 -> 1.4
Program.cpp updated: 1.3 -> 1.4
Signals.cpp updated: 1.3 -> 1.4
TimeValue.cpp updated: 1.4 -> 1.5
---
Log message:

Remove trailing whitespace


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

 DynamicLibrary.cpp |   10 +++++-----
 MappedFile.cpp     |    8 ++++----
 Memory.cpp         |    8 ++++----
 Path.cpp           |   12 ++++++------
 Process.cpp        |    8 ++++----
 Program.cpp        |    8 ++++----
 Signals.cpp        |    6 +++---
 TimeValue.cpp      |    6 +++---
 8 files changed, 33 insertions(+), 33 deletions(-)


Index: llvm/lib/System/DynamicLibrary.cpp
diff -u llvm/lib/System/DynamicLibrary.cpp:1.10 llvm/lib/System/DynamicLibrary.cpp:1.11
--- llvm/lib/System/DynamicLibrary.cpp:1.10	Sun Jan  9 17:29:00 2005
+++ llvm/lib/System/DynamicLibrary.cpp	Thu Apr 21 17:48:35 2005
@@ -1,10 +1,10 @@
 //===-- DynamicLibrary.cpp - Runtime link/load libraries --------*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Reid Spencer and is distributed under the 
+// This file was developed by Reid Spencer and is distributed under the
 // University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 //  This header file implements the operating system DynamicLibrary concept.
@@ -33,7 +33,7 @@
 
 //===----------------------------------------------------------------------===//
 //=== WARNING: Implementation here must contain only TRULY operating system
-//===          independent code. 
+//===          independent code.
 //===----------------------------------------------------------------------===//
 
 static bool did_initialize_ltdl = false;
@@ -55,7 +55,7 @@
 
   if (a_handle == 0)
     throw std::string("Can't open program as dynamic library");
-  
+
   handle = a_handle;
   OpenedHandles.push_back(a_handle);
 }


Index: llvm/lib/System/MappedFile.cpp
diff -u llvm/lib/System/MappedFile.cpp:1.3 llvm/lib/System/MappedFile.cpp:1.4
--- llvm/lib/System/MappedFile.cpp:1.3	Sun Jan  9 17:29:00 2005
+++ llvm/lib/System/MappedFile.cpp	Thu Apr 21 17:48:35 2005
@@ -1,10 +1,10 @@
 //===- MappedFile.cpp - MappedFile Support ----------------------*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Reid Spencer and is distributed under the 
+// This file was developed by Reid Spencer and is distributed under the
 // University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file implements the mapped file concept.
@@ -19,7 +19,7 @@
 
 //===----------------------------------------------------------------------===//
 //=== WARNING: Implementation here must contain only TRULY operating system
-//===          independent code. 
+//===          independent code.
 //===----------------------------------------------------------------------===//
 
 }


Index: llvm/lib/System/Memory.cpp
diff -u llvm/lib/System/Memory.cpp:1.3 llvm/lib/System/Memory.cpp:1.4
--- llvm/lib/System/Memory.cpp:1.3	Sun Jan  9 17:29:00 2005
+++ llvm/lib/System/Memory.cpp	Thu Apr 21 17:48:35 2005
@@ -1,10 +1,10 @@
 //===- Memory.cpp - Memory Handling Support ---------------------*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Reid Spencer and is distributed under the 
+// This file was developed by Reid Spencer and is distributed under the
 // University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file defines some helpful functions for allocating memory and dealing
@@ -20,7 +20,7 @@
 
 //===----------------------------------------------------------------------===//
 //=== WARNING: Implementation here must contain only TRULY operating system
-//===          independent code. 
+//===          independent code.
 //===----------------------------------------------------------------------===//
 
 }


Index: llvm/lib/System/Path.cpp
diff -u llvm/lib/System/Path.cpp:1.15 llvm/lib/System/Path.cpp:1.16
--- llvm/lib/System/Path.cpp:1.15	Sun Jan  9 17:29:00 2005
+++ llvm/lib/System/Path.cpp	Thu Apr 21 17:48:35 2005
@@ -1,10 +1,10 @@
 //===-- Path.cpp - Implement OS Path Concept --------------------*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Reid Spencer and is distributed under the 
+// This file was developed by Reid Spencer and is distributed under the
 // University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 //  This header file implements the operating system Path concept.
@@ -20,7 +20,7 @@
 
 //===----------------------------------------------------------------------===//
 //=== WARNING: Implementation here must contain only TRULY operating system
-//===          independent code. 
+//===          independent code.
 //===----------------------------------------------------------------------===//
 
 Path
@@ -33,7 +33,7 @@
   return GetLLVMDefaultConfigDir();
 }
 
-LLVMFileType 
+LLVMFileType
 sys::IdentifyFileType(const char*magic, unsigned length) {
   assert(magic && "Invalid magic number string");
   assert(length >=4 && "Invalid magic number length");
@@ -69,7 +69,7 @@
 
 bool
 Path::isDynamicLibrary() const {
-  if (readable()) 
+  if (readable())
     return hasMagicNumber("\177ELF");
   return false;
 }


Index: llvm/lib/System/Process.cpp
diff -u llvm/lib/System/Process.cpp:1.3 llvm/lib/System/Process.cpp:1.4
--- llvm/lib/System/Process.cpp:1.3	Sun Jan  9 17:29:00 2005
+++ llvm/lib/System/Process.cpp	Thu Apr 21 17:48:35 2005
@@ -1,10 +1,10 @@
 //===-- Process.cpp - Implement OS Process Concept --------------*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Reid Spencer and is distributed under the 
+// This file was developed by Reid Spencer and is distributed under the
 // University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 //  This header file implements the operating system Process concept.
@@ -19,7 +19,7 @@
 
 //===----------------------------------------------------------------------===//
 //=== WARNING: Implementation here must contain only TRULY operating system
-//===          independent code. 
+//===          independent code.
 //===----------------------------------------------------------------------===//
 
 }


Index: llvm/lib/System/Program.cpp
diff -u llvm/lib/System/Program.cpp:1.3 llvm/lib/System/Program.cpp:1.4
--- llvm/lib/System/Program.cpp:1.3	Sun Jan  9 17:29:00 2005
+++ llvm/lib/System/Program.cpp	Thu Apr 21 17:48:35 2005
@@ -1,10 +1,10 @@
 //===-- Program.cpp - Implement OS Program Concept --------------*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Reid Spencer and is distributed under the 
+// This file was developed by Reid Spencer and is distributed under the
 // University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 //  This header file implements the operating system Program concept.
@@ -19,7 +19,7 @@
 
 //===----------------------------------------------------------------------===//
 //=== WARNING: Implementation here must contain only TRULY operating system
-//===          independent code. 
+//===          independent code.
 //===----------------------------------------------------------------------===//
 
 }


Index: llvm/lib/System/Signals.cpp
diff -u llvm/lib/System/Signals.cpp:1.3 llvm/lib/System/Signals.cpp:1.4
--- llvm/lib/System/Signals.cpp:1.3	Sun Jan  9 17:29:00 2005
+++ llvm/lib/System/Signals.cpp	Thu Apr 21 17:48:35 2005
@@ -1,10 +1,10 @@
 //===- Signals.cpp - Signal Handling support --------------------*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
 // This file was developed by the LLVM research group and is distributed under
 // the University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 // This file defines some helpful functions for dealing with the possibility of
@@ -20,7 +20,7 @@
 
 //===----------------------------------------------------------------------===//
 //=== WARNING: Implementation here must contain only TRULY operating system
-//===          independent code. 
+//===          independent code.
 //===----------------------------------------------------------------------===//
 
 }


Index: llvm/lib/System/TimeValue.cpp
diff -u llvm/lib/System/TimeValue.cpp:1.4 llvm/lib/System/TimeValue.cpp:1.5
--- llvm/lib/System/TimeValue.cpp:1.4	Sun Jan  9 17:29:00 2005
+++ llvm/lib/System/TimeValue.cpp	Thu Apr 21 17:48:35 2005
@@ -1,10 +1,10 @@
 //===-- TimeValue.cpp - Implement OS TimeValue Concept ----------*- C++ -*-===//
-// 
+//
 //                     The LLVM Compiler Infrastructure
 //
-// This file was developed by Reid Spencer and is distributed under the 
+// This file was developed by Reid Spencer and is distributed under the
 // University of Illinois Open Source License. See LICENSE.TXT for details.
-// 
+//
 //===----------------------------------------------------------------------===//
 //
 //  This file implements the operating system TimeValue concept.






More information about the llvm-commits mailing list