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

Reid Spencer reid at x10sys.com
Sun Jan 9 15:29:11 PST 2005



Changes in directory llvm/lib/System:

DynamicLibrary.cpp updated: 1.9 -> 1.10
MappedFile.cpp updated: 1.2 -> 1.3
Memory.cpp updated: 1.2 -> 1.3
Path.cpp updated: 1.14 -> 1.15
Process.cpp updated: 1.2 -> 1.3
Program.cpp updated: 1.2 -> 1.3
Signals.cpp updated: 1.2 -> 1.3
TimeValue.cpp updated: 1.3 -> 1.4
---
Log message:

Rename Unix/*.cpp and Win32/*.cpp to have a *.inc suffix so that the silly
gdb debugger doesn't get confused on which file it is reading (the one in
lib/System or the one in lib/System/{Win32,Unix})


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

Index: llvm/lib/System/DynamicLibrary.cpp
diff -u llvm/lib/System/DynamicLibrary.cpp:1.9 llvm/lib/System/DynamicLibrary.cpp:1.10
--- llvm/lib/System/DynamicLibrary.cpp:1.9	Sun Jan  2 03:45:04 2005
+++ llvm/lib/System/DynamicLibrary.cpp	Sun Jan  9 17:29:00 2005
@@ -22,7 +22,7 @@
 
 #ifdef LLVM_ON_WIN32
 
-#include "Win32/DynamicLibrary.cpp"
+#include "Win32/DynamicLibrary.inc"
 
 #else
 


Index: llvm/lib/System/MappedFile.cpp
diff -u llvm/lib/System/MappedFile.cpp:1.2 llvm/lib/System/MappedFile.cpp:1.3
--- llvm/lib/System/MappedFile.cpp:1.2	Mon Dec 27 00:15:43 2004
+++ llvm/lib/System/MappedFile.cpp	Sun Jan  9 17:29:00 2005
@@ -26,10 +26,10 @@
 
 // Include the platform-specific parts of this class.
 #ifdef LLVM_ON_UNIX
-#include "Unix/MappedFile.cpp"
+#include "Unix/MappedFile.inc"
 #endif
 #ifdef LLVM_ON_WIN32
-#include "Win32/MappedFile.cpp"
+#include "Win32/MappedFile.inc"
 #endif
 
 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab


Index: llvm/lib/System/Memory.cpp
diff -u llvm/lib/System/Memory.cpp:1.2 llvm/lib/System/Memory.cpp:1.3
--- llvm/lib/System/Memory.cpp:1.2	Mon Dec 27 00:15:57 2004
+++ llvm/lib/System/Memory.cpp	Sun Jan  9 17:29:00 2005
@@ -27,10 +27,10 @@
 
 // Include the platform-specific parts of this class.
 #ifdef LLVM_ON_UNIX
-#include "Unix/Memory.cpp"
+#include "Unix/Memory.inc"
 #endif
 #ifdef LLVM_ON_WIN32
-#include "Win32/Memory.cpp"
+#include "Win32/Memory.inc"
 #endif
 
 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab


Index: llvm/lib/System/Path.cpp
diff -u llvm/lib/System/Path.cpp:1.14 llvm/lib/System/Path.cpp:1.15
--- llvm/lib/System/Path.cpp:1.14	Fri Dec 24 00:29:17 2004
+++ llvm/lib/System/Path.cpp	Sun Jan  9 17:29:00 2005
@@ -101,10 +101,10 @@
 // Include the truly platform-specific parts of this class.
 
 #if defined(LLVM_ON_UNIX)
-#include "Unix/Path.cpp"
+#include "Unix/Path.inc"
 #endif
 #if defined(LLVM_ON_WIN32)
-#include "Win32/Path.cpp"
+#include "Win32/Path.inc"
 #endif
 
 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab


Index: llvm/lib/System/Process.cpp
diff -u llvm/lib/System/Process.cpp:1.2 llvm/lib/System/Process.cpp:1.3
--- llvm/lib/System/Process.cpp:1.2	Mon Dec 27 00:15:29 2004
+++ llvm/lib/System/Process.cpp	Sun Jan  9 17:29:00 2005
@@ -26,10 +26,10 @@
 
 // Include the platform-specific parts of this class.
 #ifdef LLVM_ON_UNIX
-#include "Unix/Process.cpp"
+#include "Unix/Process.inc"
 #endif
 #ifdef LLVM_ON_WIN32
-#include "Win32/Process.cpp"
+#include "Win32/Process.inc"
 #endif
 
 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab


Index: llvm/lib/System/Program.cpp
diff -u llvm/lib/System/Program.cpp:1.2 llvm/lib/System/Program.cpp:1.3
--- llvm/lib/System/Program.cpp:1.2	Mon Dec 27 00:16:24 2004
+++ llvm/lib/System/Program.cpp	Sun Jan  9 17:29:00 2005
@@ -26,10 +26,10 @@
 
 // Include the platform-specific parts of this class.
 #ifdef LLVM_ON_UNIX
-#include "Unix/Program.cpp"
+#include "Unix/Program.inc"
 #endif
 #ifdef LLVM_ON_WIN32
-#include "Win32/Program.cpp"
+#include "Win32/Program.inc"
 #endif
 
 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab


Index: llvm/lib/System/Signals.cpp
diff -u llvm/lib/System/Signals.cpp:1.2 llvm/lib/System/Signals.cpp:1.3
--- llvm/lib/System/Signals.cpp:1.2	Mon Dec 27 00:16:10 2004
+++ llvm/lib/System/Signals.cpp	Sun Jan  9 17:29:00 2005
@@ -27,10 +27,10 @@
 
 // Include the platform-specific parts of this class.
 #ifdef LLVM_ON_UNIX
-#include "Unix/Signals.cpp"
+#include "Unix/Signals.inc"
 #endif
 #ifdef LLVM_ON_WIN32
-#include "Win32/Signals.cpp"
+#include "Win32/Signals.inc"
 #endif
 
 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab


Index: llvm/lib/System/TimeValue.cpp
diff -u llvm/lib/System/TimeValue.cpp:1.3 llvm/lib/System/TimeValue.cpp:1.4
--- llvm/lib/System/TimeValue.cpp:1.3	Mon Dec 27 00:16:38 2004
+++ llvm/lib/System/TimeValue.cpp	Sun Jan  9 17:29:00 2005
@@ -50,10 +50,10 @@
 
 /// Include the platform specific portion of TimeValue class
 #ifdef LLVM_ON_UNIX
-#include "Unix/TimeValue.cpp"
+#include "Unix/TimeValue.inc"
 #endif
 #ifdef LLVM_ON_WIN32
-#include "Win32/TimeValue.cpp"
+#include "Win32/TimeValue.inc"
 #endif
 
 // vim: sw=2 smartindent smarttab tw=80 autoindent expandtab






More information about the llvm-commits mailing list