[llvm-commits] CVS: llvm/lib/Support/Annotation.cpp CommandLine.cpp Debug.cpp DynamicLinker.cpp FileUtilities.cpp IsInf.cpp IsNAN.cpp PluginLoader.cpp SlowOperationInformer.cpp Statistic.cpp StringExtras.cpp SystemUtils.cpp Timer.cpp ToolRunner.cpp

Reid Spencer reid at x10sys.com
Wed Sep 1 15:55:58 PDT 2004



Changes in directory llvm/lib/Support:

Annotation.cpp updated: 1.14 -> 1.15
CommandLine.cpp updated: 1.49 -> 1.50
Debug.cpp updated: 1.5 -> 1.6
DynamicLinker.cpp updated: 1.7 -> 1.8
FileUtilities.cpp updated: 1.24 -> 1.25
IsInf.cpp updated: 1.2 -> 1.3
IsNAN.cpp updated: 1.1 -> 1.2
PluginLoader.cpp updated: 1.11 -> 1.12
SlowOperationInformer.cpp updated: 1.4 -> 1.5
Statistic.cpp updated: 1.14 -> 1.15
StringExtras.cpp updated: 1.1 -> 1.2
SystemUtils.cpp updated: 1.33 -> 1.34
Timer.cpp updated: 1.30 -> 1.31
ToolRunner.cpp updated: 1.29 -> 1.30
---
Log message:

Changes For Bug 352: http://llvm.cs.uiuc.edu/PR352 
Move include/Config and include/Support into include/llvm/Config,
include/llvm/ADT and include/llvm/Support. From here on out, all LLVM 
public header files must be under include/llvm/.


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

Index: llvm/lib/Support/Annotation.cpp
diff -u llvm/lib/Support/Annotation.cpp:1.14 llvm/lib/Support/Annotation.cpp:1.15
--- llvm/lib/Support/Annotation.cpp:1.14	Thu Feb 26 01:23:57 2004
+++ llvm/lib/Support/Annotation.cpp	Wed Sep  1 17:55:35 2004
@@ -12,7 +12,7 @@
 //===----------------------------------------------------------------------===//
 
 #include <map>
-#include "Support/Annotation.h"
+#include "llvm/Support/Annotation.h"
 using namespace llvm;
 
 Annotation::~Annotation() {}  // Designed to be subclassed


Index: llvm/lib/Support/CommandLine.cpp
diff -u llvm/lib/Support/CommandLine.cpp:1.49 llvm/lib/Support/CommandLine.cpp:1.50
--- llvm/lib/Support/CommandLine.cpp:1.49	Tue Aug 31 23:41:28 2004
+++ llvm/lib/Support/CommandLine.cpp	Wed Sep  1 17:55:35 2004
@@ -16,8 +16,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "Config/config.h"
-#include "Support/CommandLine.h"
+#include "llvm/Config/config.h"
+#include "llvm/Support/CommandLine.h"
 #include <algorithm>
 #include <map>
 #include <set>


Index: llvm/lib/Support/Debug.cpp
diff -u llvm/lib/Support/Debug.cpp:1.5 llvm/lib/Support/Debug.cpp:1.6
--- llvm/lib/Support/Debug.cpp:1.5	Sun Dec 14 15:35:53 2003
+++ llvm/lib/Support/Debug.cpp	Wed Sep  1 17:55:35 2004
@@ -23,8 +23,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "Support/Debug.h"
-#include "Support/CommandLine.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/Support/CommandLine.h"
 using namespace llvm;
 
 bool llvm::DebugFlag;  // DebugFlag - Exported boolean set by the -debug option


Index: llvm/lib/Support/DynamicLinker.cpp
diff -u llvm/lib/Support/DynamicLinker.cpp:1.7 llvm/lib/Support/DynamicLinker.cpp:1.8
--- llvm/lib/Support/DynamicLinker.cpp:1.7	Fri May 28 18:54:07 2004
+++ llvm/lib/Support/DynamicLinker.cpp	Wed Sep  1 17:55:35 2004
@@ -18,9 +18,9 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "Support/DynamicLinker.h"
-#include "Config/dlfcn.h"
-#include "Config/windows.h"
+#include "llvm/Support/DynamicLinker.h"
+#include "llvm/Config/dlfcn.h"
+#include "llvm/Config/windows.h"
 #include <cassert>
 #include <vector>
 using namespace llvm;


Index: llvm/lib/Support/FileUtilities.cpp
diff -u llvm/lib/Support/FileUtilities.cpp:1.24 llvm/lib/Support/FileUtilities.cpp:1.25
--- llvm/lib/Support/FileUtilities.cpp:1.24	Mon Jun  7 14:37:24 2004
+++ llvm/lib/Support/FileUtilities.cpp	Wed Sep  1 17:55:35 2004
@@ -12,14 +12,14 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "Support/FileUtilities.h"
-#include "Support/DataTypes.h"
-#include "Config/unistd.h"
-#include "Config/fcntl.h"
-#include "Config/sys/types.h"
-#include "Config/sys/stat.h"
-#include "Config/sys/mman.h"
-#include "Config/alloca.h"
+#include "llvm/Support/FileUtilities.h"
+#include "llvm/Support/DataTypes.h"
+#include "llvm/Config/unistd.h"
+#include "llvm/Config/fcntl.h"
+#include "llvm/Config/sys/types.h"
+#include "llvm/Config/sys/stat.h"
+#include "llvm/Config/sys/mman.h"
+#include "llvm/Config/alloca.h"
 #include <cerrno>
 #include <cstdio>
 #include <fstream>


Index: llvm/lib/Support/IsInf.cpp
diff -u llvm/lib/Support/IsInf.cpp:1.2 llvm/lib/Support/IsInf.cpp:1.3
--- llvm/lib/Support/IsInf.cpp:1.2	Tue Jul 20 22:32:51 2004
+++ llvm/lib/Support/IsInf.cpp	Wed Sep  1 17:55:35 2004
@@ -11,7 +11,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "Config/config.h"
+#include "llvm/Config/config.h"
 #if HAVE_ISINF_IN_MATH_H
 # include <math.h>
 #elif HAVE_ISINF_IN_CMATH


Index: llvm/lib/Support/IsNAN.cpp
diff -u llvm/lib/Support/IsNAN.cpp:1.1 llvm/lib/Support/IsNAN.cpp:1.2
--- llvm/lib/Support/IsNAN.cpp:1.1	Tue Jun 22 18:54:38 2004
+++ llvm/lib/Support/IsNAN.cpp	Wed Sep  1 17:55:35 2004
@@ -11,7 +11,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "Config/config.h"
+#include "llvm/Config/config.h"
 #if HAVE_ISNAN_IN_MATH_H
 # include <math.h>
 #elif HAVE_ISNAN_IN_CMATH


Index: llvm/lib/Support/PluginLoader.cpp
diff -u llvm/lib/Support/PluginLoader.cpp:1.11 llvm/lib/Support/PluginLoader.cpp:1.12
--- llvm/lib/Support/PluginLoader.cpp:1.11	Sat Jul 10 20:04:33 2004
+++ llvm/lib/Support/PluginLoader.cpp	Wed Sep  1 17:55:35 2004
@@ -12,8 +12,8 @@
 //===----------------------------------------------------------------------===//
 
 #define DONT_GET_PLUGIN_LOADER_OPTION
-#include "Support/PluginLoader.h"
-#include "Support/DynamicLinker.h"
+#include "llvm/Support/PluginLoader.h"
+#include "llvm/Support/DynamicLinker.h"
 #include <iostream>
 using namespace llvm;
 


Index: llvm/lib/Support/SlowOperationInformer.cpp
diff -u llvm/lib/Support/SlowOperationInformer.cpp:1.4 llvm/lib/Support/SlowOperationInformer.cpp:1.5
--- llvm/lib/Support/SlowOperationInformer.cpp:1.4	Thu Jan  1 09:14:28 2004
+++ llvm/lib/Support/SlowOperationInformer.cpp	Wed Sep  1 17:55:35 2004
@@ -11,8 +11,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "Support/SlowOperationInformer.h"
-#include "Config/config.h"     // Get the signal handler return type
+#include "llvm/Support/SlowOperationInformer.h"
+#include "llvm/Config/config.h"     // Get the signal handler return type
 #include <iostream>
 #include <sstream>
 #include <signal.h>


Index: llvm/lib/Support/Statistic.cpp
diff -u llvm/lib/Support/Statistic.cpp:1.14 llvm/lib/Support/Statistic.cpp:1.15
--- llvm/lib/Support/Statistic.cpp:1.14	Tue Jan  6 03:16:02 2004
+++ llvm/lib/Support/Statistic.cpp	Wed Sep  1 17:55:35 2004
@@ -21,8 +21,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "Support/Statistic.h"
-#include "Support/CommandLine.h"
+#include "llvm/ADT/Statistic.h"
+#include "llvm/Support/CommandLine.h"
 #include <sstream>
 #include <iostream>
 #include <algorithm>


Index: llvm/lib/Support/StringExtras.cpp
diff -u llvm/lib/Support/StringExtras.cpp:1.1 llvm/lib/Support/StringExtras.cpp:1.2
--- llvm/lib/Support/StringExtras.cpp:1.1	Sun Dec 28 23:07:02 2003
+++ llvm/lib/Support/StringExtras.cpp	Wed Sep  1 17:55:35 2004
@@ -11,7 +11,7 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "Support/StringExtras.h"
+#include "llvm/ADT/StringExtras.h"
 using namespace llvm;
 
 /// getToken - This function extracts one token from source, ignoring any


Index: llvm/lib/Support/SystemUtils.cpp
diff -u llvm/lib/Support/SystemUtils.cpp:1.33 llvm/lib/Support/SystemUtils.cpp:1.34
--- llvm/lib/Support/SystemUtils.cpp:1.33	Sun Jul 25 02:34:00 2004
+++ llvm/lib/Support/SystemUtils.cpp	Wed Sep  1 17:55:35 2004
@@ -13,15 +13,15 @@
 //===----------------------------------------------------------------------===//
 
 #define _POSIX_MAPPED_FILES
-#include "Support/SystemUtils.h"
-#include "Config/fcntl.h"
-#include "Config/pagesize.h"
-#include "Config/unistd.h"
-#include "Config/windows.h"
-#include "Config/sys/mman.h"
-#include "Config/sys/stat.h"
-#include "Config/sys/types.h"
-#include "Config/sys/wait.h"
+#include "llvm/Support/SystemUtils.h"
+#include "llvm/Config/fcntl.h"
+#include "llvm/Config/pagesize.h"
+#include "llvm/Config/unistd.h"
+#include "llvm/Config/windows.h"
+#include "llvm/Config/sys/mman.h"
+#include "llvm/Config/sys/stat.h"
+#include "llvm/Config/sys/types.h"
+#include "llvm/Config/sys/wait.h"
 #include <algorithm>
 #include <cerrno>
 #include <cstdlib>


Index: llvm/lib/Support/Timer.cpp
diff -u llvm/lib/Support/Timer.cpp:1.30 llvm/lib/Support/Timer.cpp:1.31
--- llvm/lib/Support/Timer.cpp:1.30	Mon Jun  7 14:34:51 2004
+++ llvm/lib/Support/Timer.cpp	Wed Sep  1 17:55:35 2004
@@ -11,18 +11,18 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "Support/Timer.h"
-#include "Support/CommandLine.h"
+#include "llvm/Support/Timer.h"
+#include "llvm/Support/CommandLine.h"
 #include <algorithm>
 #include <iostream>
 #include <functional>
 #include <fstream>
 #include <map>
-#include "Config/sys/resource.h"
-#include "Config/sys/time.h"
-#include "Config/unistd.h"
-#include "Config/malloc.h"
-#include "Config/windows.h"
+#include "llvm/Config/sys/resource.h"
+#include "llvm/Config/sys/time.h"
+#include "llvm/Config/unistd.h"
+#include "llvm/Config/malloc.h"
+#include "llvm/Config/windows.h"
 using namespace llvm;
 
 // GetLibSupportInfoOutputFile - Return a file stream to print our output on.


Index: llvm/lib/Support/ToolRunner.cpp
diff -u llvm/lib/Support/ToolRunner.cpp:1.29 llvm/lib/Support/ToolRunner.cpp:1.30
--- llvm/lib/Support/ToolRunner.cpp:1.29	Sat Jul 24 02:49:11 2004
+++ llvm/lib/Support/ToolRunner.cpp	Wed Sep  1 17:55:35 2004
@@ -13,9 +13,9 @@
 
 #define DEBUG_TYPE "toolrunner"
 #include "llvm/Support/ToolRunner.h"
-#include "Config/config.h"   // for HAVE_LINK_R
-#include "Support/Debug.h"
-#include "Support/FileUtilities.h"
+#include "llvm/Config/config.h"   // for HAVE_LINK_R
+#include "llvm/Support/Debug.h"
+#include "llvm/Support/FileUtilities.h"
 #include <fstream>
 #include <sstream>
 using namespace llvm;






More information about the llvm-commits mailing list