[llvm-commits] CVS: llvm/include/llvm/Support/Annotation.h CFG.h Casting.h CommandLine.h ConstantRange.h DOTGraphTraits.h Debug.h DynamicLinker.h ELF.h FileUtilities.h GraphWriter.h LeakDetector.h MallocAllocator.h Mangler.h MathExtras.h PassNameParser.h PluginLoader.h SlowOperationInformer.h SystemUtils.h ThreadSupport-NoSupport.h ThreadSupport-PThreads.h ThreadSupport.h.in Timer.h ToolRunner.h TypeInfo.h type_traits.h

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



Changes in directory llvm/include/llvm/Support:

Annotation.h updated: 1.15 -> 1.16
CFG.h updated: 1.21 -> 1.22
Casting.h updated: 1.12 -> 1.13
CommandLine.h updated: 1.35 -> 1.36
ConstantRange.h updated: 1.7 -> 1.8
DOTGraphTraits.h updated: 1.9 -> 1.10
Debug.h updated: 1.4 -> 1.5
DynamicLinker.h updated: 1.3 -> 1.4
ELF.h updated: 1.4 -> 1.5
FileUtilities.h updated: 1.18 -> 1.19
GraphWriter.h updated: 1.19 -> 1.20
LeakDetector.h updated: 1.4 -> 1.5
MallocAllocator.h updated: 1.7 -> 1.8
Mangler.h updated: 1.11 -> 1.12
MathExtras.h updated: 1.14 -> 1.15
PassNameParser.h updated: 1.9 -> 1.10
PluginLoader.h updated: 1.1 -> 1.2
SlowOperationInformer.h updated: 1.3 -> 1.4
SystemUtils.h updated: 1.12 -> 1.13
ThreadSupport-NoSupport.h updated: 1.1 -> 1.2
ThreadSupport-PThreads.h updated: 1.2 -> 1.3
ThreadSupport.h.in updated: 1.1 -> 1.2
Timer.h updated: 1.12 -> 1.13
ToolRunner.h updated: 1.14 -> 1.15
TypeInfo.h updated: 1.6 -> 1.7
type_traits.h updated: 1.1 -> 1.2
---
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:  (+75 -70)

Index: llvm/include/llvm/Support/Annotation.h
diff -u llvm/include/llvm/Support/Annotation.h:1.15 llvm/include/llvm/Support/Annotation.h:1.16
--- llvm/include/llvm/Support/Annotation.h:1.15	Sun Jun 27 13:36:39 2004
+++ llvm/include/llvm/Support/Annotation.h	Wed Sep  1 17:55:34 2004
@@ -1,4 +1,4 @@
-//===-- Support/Annotation.h - Annotation classes ---------------*- C++ -*-===//
+//===-- llvm/Support/Annotation.h - Annotation classes ----------*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -19,8 +19,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_ANNOTATION_H
-#define SUPPORT_ANNOTATION_H
+#ifndef LLVM_SUPPORT_ANNOTATION_H
+#define LLVM_SUPPORT_ANNOTATION_H
 
 #include <string>
 #include <cassert>


Index: llvm/include/llvm/Support/CFG.h
diff -u llvm/include/llvm/Support/CFG.h:1.21 llvm/include/llvm/Support/CFG.h:1.22
--- llvm/include/llvm/Support/CFG.h:1.21	Fri May 21 13:37:13 2004
+++ llvm/include/llvm/Support/CFG.h	Wed Sep  1 17:55:34 2004
@@ -15,10 +15,10 @@
 #ifndef LLVM_SUPPORT_CFG_H
 #define LLVM_SUPPORT_CFG_H
 
-#include "Support/GraphTraits.h"
+#include "llvm/ADT/GraphTraits.h"
 #include "llvm/Function.h"
 #include "llvm/InstrTypes.h"
-#include "Support/iterator"
+#include "llvm/ADT/iterator"
 
 namespace llvm {
 


Index: llvm/include/llvm/Support/Casting.h
diff -u llvm/include/llvm/Support/Casting.h:1.12 llvm/include/llvm/Support/Casting.h:1.13
--- llvm/include/llvm/Support/Casting.h:1.12	Sun Nov 16 14:21:13 2003
+++ llvm/include/llvm/Support/Casting.h	Wed Sep  1 17:55:34 2004
@@ -1,4 +1,4 @@
-//===-- Support/Casting.h - Allow flexible, checked, casts ------*- C++ -*-===//
+//===-- llvm/Support/Casting.h - Allow flexible, checked, casts -*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -12,8 +12,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_CASTING_H
-#define SUPPORT_CASTING_H
+#ifndef LLVM_SUPPORT_CASTING_H
+#define LLVM_SUPPORT_CASTING_H
 
 namespace llvm {
 


Index: llvm/include/llvm/Support/CommandLine.h
diff -u llvm/include/llvm/Support/CommandLine.h:1.35 llvm/include/llvm/Support/CommandLine.h:1.36
--- llvm/include/llvm/Support/CommandLine.h:1.35	Fri Aug 13 14:47:30 2004
+++ llvm/include/llvm/Support/CommandLine.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===- Support/CommandLine.h - Flexible Command line parser -----*- C++ -*-===//
+//===- llvm/Support/CommandLine.h - Command line handler --------*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -17,10 +17,10 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_COMMANDLINE_H
-#define SUPPORT_COMMANDLINE_H
+#ifndef LLVM_SUPPORT_COMMANDLINE_H
+#define LLVM_SUPPORT_COMMANDLINE_H
 
-#include "Support/type_traits.h"
+#include "llvm/Support/type_traits.h"
 #include <string>
 #include <vector>
 #include <utility>


Index: llvm/include/llvm/Support/ConstantRange.h
diff -u llvm/include/llvm/Support/ConstantRange.h:1.7 llvm/include/llvm/Support/ConstantRange.h:1.8
--- llvm/include/llvm/Support/ConstantRange.h:1.7	Mon Mar 29 18:20:08 2004
+++ llvm/include/llvm/Support/ConstantRange.h	Wed Sep  1 17:55:35 2004
@@ -24,7 +24,7 @@
 #ifndef LLVM_SUPPORT_CONSTANT_RANGE_H
 #define LLVM_SUPPORT_CONSTANT_RANGE_H
 
-#include "Support/DataTypes.h"
+#include "llvm/Support/DataTypes.h"
 #include <iosfwd>
 
 namespace llvm {


Index: llvm/include/llvm/Support/DOTGraphTraits.h
diff -u llvm/include/llvm/Support/DOTGraphTraits.h:1.9 llvm/include/llvm/Support/DOTGraphTraits.h:1.10
--- llvm/include/llvm/Support/DOTGraphTraits.h:1.9	Wed May  5 01:10:06 2004
+++ llvm/include/llvm/Support/DOTGraphTraits.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Support/DotGraphTraits.h - Customize .dot output --------*- C++ -*-===//
+//===-- llvm/Support/DotGraphTraits.h - Customize .dot output ---*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -14,8 +14,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_DOTGRAPHTRAITS_H
-#define SUPPORT_DOTGRAPHTRAITS_H
+#ifndef LLVM_SUPPORT_DOTGRAPHTRAITS_H
+#define LLVM_SUPPORT_DOTGRAPHTRAITS_H
 
 #include <string>
 


Index: llvm/include/llvm/Support/Debug.h
diff -u llvm/include/llvm/Support/Debug.h:1.4 llvm/include/llvm/Support/Debug.h:1.5
--- llvm/include/llvm/Support/Debug.h:1.4	Wed Jul 21 15:50:22 2004
+++ llvm/include/llvm/Support/Debug.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===- Debug.h - An easy way to add debug output to your code ---*- C++ -*-===//
+//===- llvm/Support/Debug.h - Easy way to add debug output ------*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -23,8 +23,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_DEBUG_H
-#define SUPPORT_DEBUG_H
+#ifndef LLVM_SUPPORT_DEBUG_H
+#define LLVM_SUPPORT_DEBUG_H
 
 // Unsurprisingly, most users of this macro use std::cerr too.
 #include <iostream>


Index: llvm/include/llvm/Support/DynamicLinker.h
diff -u llvm/include/llvm/Support/DynamicLinker.h:1.3 llvm/include/llvm/Support/DynamicLinker.h:1.4
--- llvm/include/llvm/Support/DynamicLinker.h:1.3	Tue Nov 11 16:41:29 2003
+++ llvm/include/llvm/Support/DynamicLinker.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- DynamicLinker.h - System-indep. DynamicLinker interface -*- C++ -*-===//
+//===-- llvm/Support/DynamicLinker.h - Portable Dynamic Linker --*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -13,8 +13,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_DYNAMICLINKER_H
-#define SUPPORT_DYNAMICLINKER_H
+#ifndef LLVM_SUPPORT_DYNAMICLINKER_H
+#define LLVM_SUPPORT_DYNAMICLINKER_H
 
 #include <string>
 


Index: llvm/include/llvm/Support/ELF.h
diff -u llvm/include/llvm/Support/ELF.h:1.4 llvm/include/llvm/Support/ELF.h:1.5
--- llvm/include/llvm/Support/ELF.h:1.4	Sun Feb 29 00:33:28 2004
+++ llvm/include/llvm/Support/ELF.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Support/ELF.h - ELF constants and data structures -------*- C++ -*-===//
+//===-- llvm/Support/ELF.h - ELF constants and data structures --*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -18,7 +18,10 @@
 //
 //===----------------------------------------------------------------------===//
 
-#include "Support/DataTypes.h"
+#ifndef LLVM_SUPPORT_ELF_H
+#define LLVM_SUPPORT_ELF_H
+
+#include "llvm/Support/DataTypes.h"
 #include <cstring>
 #include <cstdlib>
 
@@ -293,3 +296,5 @@
 } // end namespace ELF
 
 } // end namespace llvm
+
+#endif


Index: llvm/include/llvm/Support/FileUtilities.h
diff -u llvm/include/llvm/Support/FileUtilities.h:1.18 llvm/include/llvm/Support/FileUtilities.h:1.19
--- llvm/include/llvm/Support/FileUtilities.h:1.18	Tue Jun  1 19:51:20 2004
+++ llvm/include/llvm/Support/FileUtilities.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===- Support/FileUtilities.h - File System Utilities ----------*- C++ -*-===//
+//===- llvm/Support/FileUtilities.h - File System Utilities -----*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -12,8 +12,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_FILEUTILITIES_H
-#define SUPPORT_FILEUTILITIES_H
+#ifndef LLVM_SUPPORT_FILEUTILITIES_H
+#define LLVM_SUPPORT_FILEUTILITIES_H
 
 #include <string>
 


Index: llvm/include/llvm/Support/GraphWriter.h
diff -u llvm/include/llvm/Support/GraphWriter.h:1.19 llvm/include/llvm/Support/GraphWriter.h:1.20
--- llvm/include/llvm/Support/GraphWriter.h:1.19	Wed Feb 11 14:44:17 2004
+++ llvm/include/llvm/Support/GraphWriter.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Support/GraphWriter.h - Write a graph to a .dot file ----*- C++ -*-===//
+//===-- llvm/Support/GraphWriter.h - Write graph to a .dot file -*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -20,11 +20,11 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_GRAPHWRITER_H
-#define SUPPORT_GRAPHWRITER_H
+#ifndef LLVM_SUPPORT_GRAPHWRITER_H
+#define LLVM_SUPPORT_GRAPHWRITER_H
 
-#include "Support/DOTGraphTraits.h"
-#include "Support/GraphTraits.h"
+#include "llvm/Support/DOTGraphTraits.h"
+#include "llvm/ADT/GraphTraits.h"
 #include <vector>
 #include <iostream>
 


Index: llvm/include/llvm/Support/LeakDetector.h
diff -u llvm/include/llvm/Support/LeakDetector.h:1.4 llvm/include/llvm/Support/LeakDetector.h:1.5
--- llvm/include/llvm/Support/LeakDetector.h:1.4	Tue Nov 11 16:41:29 2003
+++ llvm/include/llvm/Support/LeakDetector.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Support/LeakDetector.h - Provide simple leak detection --*- C++ -*-===//
+//===-- llvm/Support/LeakDetector.h - Provide leak detection ----*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -19,8 +19,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_LEAKDETECTOR_H
-#define SUPPORT_LEAKDETECTOR_H
+#ifndef LLVM_SUPPORT_LEAKDETECTOR_H
+#define LLVM_SUPPORT_LEAKDETECTOR_H
 
 #include <string>
 


Index: llvm/include/llvm/Support/MallocAllocator.h
diff -u llvm/include/llvm/Support/MallocAllocator.h:1.7 llvm/include/llvm/Support/MallocAllocator.h:1.8
--- llvm/include/llvm/Support/MallocAllocator.h:1.7	Sun Nov 16 14:21:13 2003
+++ llvm/include/llvm/Support/MallocAllocator.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Support/MallocAllocator.h - Allocator using malloc/free -*- C++ -*-===//
+//===-- llvm/Support/MallocAllocator.h --------------------------*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -17,8 +17,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_MALLOCALLOCATOR_H
-#define SUPPORT_MALLOCALLOCATOR_H
+#ifndef LLVM_SUPPORT_MALLOCALLOCATOR_H
+#define LLVM_SUPPORT_MALLOCALLOCATOR_H
 
 #include <cstdlib>
 #include <memory>


Index: llvm/include/llvm/Support/Mangler.h
diff -u llvm/include/llvm/Support/Mangler.h:1.11 llvm/include/llvm/Support/Mangler.h:1.12
--- llvm/include/llvm/Support/Mangler.h:1.11	Tue Aug 17 01:06:37 2004
+++ llvm/include/llvm/Support/Mangler.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Mangler.h - Self-contained llvm name mangler ------------*- C++ -*-===//
+//===-- llvm/Support/Mangler.h - Self-contained name mangler ----*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //


Index: llvm/include/llvm/Support/MathExtras.h
diff -u llvm/include/llvm/Support/MathExtras.h:1.14 llvm/include/llvm/Support/MathExtras.h:1.15
--- llvm/include/llvm/Support/MathExtras.h:1.14	Tue Aug 17 14:17:10 2004
+++ llvm/include/llvm/Support/MathExtras.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Support/MathExtras.h - Useful math functions ------------*- C++ -*-===//
+//===-- llvm/Support/MathExtras.h - Useful math functions -------*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -11,10 +11,10 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_MATHEXTRAS_H
-#define SUPPORT_MATHEXTRAS_H
+#ifndef LLVM_SUPPORT_MATHEXTRAS_H
+#define LLVM_SUPPORT_MATHEXTRAS_H
 
-#include "Support/DataTypes.h"
+#include "llvm/Support/DataTypes.h"
 
 namespace llvm {
 


Index: llvm/include/llvm/Support/PassNameParser.h
diff -u llvm/include/llvm/Support/PassNameParser.h:1.9 llvm/include/llvm/Support/PassNameParser.h:1.10
--- llvm/include/llvm/Support/PassNameParser.h:1.9	Tue Nov 11 16:41:31 2003
+++ llvm/include/llvm/Support/PassNameParser.h	Wed Sep  1 17:55:35 2004
@@ -23,7 +23,7 @@
 #ifndef LLVM_SUPPORT_PASS_NAME_PARSER_H
 #define LLVM_SUPPORT_PASS_NAME_PARSER_H
 
-#include "Support/CommandLine.h"
+#include "llvm/Support/CommandLine.h"
 #include "llvm/Pass.h"
 #include <algorithm>
 #include <iostream>


Index: llvm/include/llvm/Support/PluginLoader.h
diff -u llvm/include/llvm/Support/PluginLoader.h:1.1 llvm/include/llvm/Support/PluginLoader.h:1.2
--- llvm/include/llvm/Support/PluginLoader.h:1.1	Sat Jul 10 20:03:57 2004
+++ llvm/include/llvm/Support/PluginLoader.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Support/PluginLoader.h - Provide -load option to tool ---*- C++ -*-===//
+//===-- llvm/Support/PluginLoader.h - Plugin Loader for Tools ---*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -14,10 +14,10 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_PLUGINLOADER_H
-#define SUPPORT_PLUGINLOADER_H
+#ifndef LLVM_SUPPORT_PLUGINLOADER_H
+#define LLVM_SUPPORT_PLUGINLOADER_H
 
-#include "Support/CommandLine.h"
+#include "llvm/Support/CommandLine.h"
 
 namespace llvm {
   struct PluginLoader {


Index: llvm/include/llvm/Support/SlowOperationInformer.h
diff -u llvm/include/llvm/Support/SlowOperationInformer.h:1.3 llvm/include/llvm/Support/SlowOperationInformer.h:1.4
--- llvm/include/llvm/Support/SlowOperationInformer.h:1.3	Wed Dec 31 04:20:37 2003
+++ llvm/include/llvm/Support/SlowOperationInformer.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===- SlowOperationInformer.h - Keep the user informed ---------*- C++ -*-===//
+//===- llvm/Support/SlowOperationInformer.h - Keep user informed *- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -28,8 +28,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_SLOW_OPERATION_INFORMER_H
-#define SUPPORT_SLOW_OPERATION_INFORMER_H
+#ifndef LLVM_SUPPORT_SLOW_OPERATION_INFORMER_H
+#define LLVM_SUPPORT_SLOW_OPERATION_INFORMER_H
 
 #include <string>
 #include <cassert>


Index: llvm/include/llvm/Support/SystemUtils.h
diff -u llvm/include/llvm/Support/SystemUtils.h:1.12 llvm/include/llvm/Support/SystemUtils.h:1.13
--- llvm/include/llvm/Support/SystemUtils.h:1.12	Sat Jul 24 02:41:31 2004
+++ llvm/include/llvm/Support/SystemUtils.h	Wed Sep  1 17:55:35 2004
@@ -12,8 +12,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SYSTEMUTILS_H
-#define SYSTEMUTILS_H
+#ifndef LLVM_SUPPORT_SYSTEMUTILS_H
+#define LLVM_SUPPORT_SYSTEMUTILS_H
 
 #include <string>
 


Index: llvm/include/llvm/Support/ThreadSupport-NoSupport.h
diff -u llvm/include/llvm/Support/ThreadSupport-NoSupport.h:1.1 llvm/include/llvm/Support/ThreadSupport-NoSupport.h:1.2
--- llvm/include/llvm/Support/ThreadSupport-NoSupport.h:1.1	Sat Jan 17 13:54:29 2004
+++ llvm/include/llvm/Support/ThreadSupport-NoSupport.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Support/ThreadSupport-NoSupport.h - Generic impl --------*- C++ -*-===//
+//===-- llvm/Support/ThreadSupport-NoSupport.h - Generic Impl ---*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -16,7 +16,7 @@
 // Users should never #include this file directly!  As such, no include guards
 // are needed.
 
-#ifndef SUPPORT_THREADSUPPORT_H
+#ifndef LLVM_SUPPORT_THREADSUPPORT_H
 #error "Code should not #include Support/ThreadSupport-NoSupport.h directly!"
 #endif
 


Index: llvm/include/llvm/Support/ThreadSupport-PThreads.h
diff -u llvm/include/llvm/Support/ThreadSupport-PThreads.h:1.2 llvm/include/llvm/Support/ThreadSupport-PThreads.h:1.3
--- llvm/include/llvm/Support/ThreadSupport-PThreads.h:1.2	Sat Jan 17 13:54:29 2004
+++ llvm/include/llvm/Support/ThreadSupport-PThreads.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Support/ThreadSupport-PThreads.h - PThreads support -----*- C++ -*-===//
+//===-- llvm/Support/ThreadSupport-PThreads.h - PThreads support *- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -15,7 +15,7 @@
 // Users should never #include this file directly!  As such, no include guards
 // are needed.
 
-#ifndef SUPPORT_THREADSUPPORT_H
+#ifndef LLVM_SUPPORT_THREADSUPPORT_H
 #error "Code should not #include Support/ThreadSupport/PThreads.h directly!"
 #endif
 


Index: llvm/include/llvm/Support/ThreadSupport.h.in
diff -u llvm/include/llvm/Support/ThreadSupport.h.in:1.1 llvm/include/llvm/Support/ThreadSupport.h.in:1.2
--- llvm/include/llvm/Support/ThreadSupport.h.in:1.1	Mon Feb 23 15:30:29 2004
+++ llvm/include/llvm/Support/ThreadSupport.h.in	Wed Sep  1 17:55:35 2004
@@ -18,9 +18,9 @@
 #define SUPPORT_THREADSUPPORT_H
 
 #if @HAVE_PTHREAD_MUTEX_LOCK@
-#include "Support/ThreadSupport-PThreads.h"
+#include "llvm/Support/ThreadSupport-PThreads.h"
 #else
-#include "Support/ThreadSupport-NoSupport.h"
+#include "llvm/Support/ThreadSupport-NoSupport.h"
 #endif // If no system support is available
 
 namespace llvm {


Index: llvm/include/llvm/Support/Timer.h
diff -u llvm/include/llvm/Support/Timer.h:1.12 llvm/include/llvm/Support/Timer.h:1.13
--- llvm/include/llvm/Support/Timer.h:1.12	Tue Nov 11 16:41:29 2003
+++ llvm/include/llvm/Support/Timer.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Support/Timer.h - Interval Timing Support ---------------*- C++ -*-===//
+//===-- llvm/Support/Timer.h - Interval Timing Support ----------*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -12,8 +12,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_TIMER_H
-#define SUPPORT_TIMER_H
+#ifndef LLVM_SUPPORT_TIMER_H
+#define LLVM_SUPPORT_TIMER_H
 
 #include <string>
 #include <vector>


Index: llvm/include/llvm/Support/ToolRunner.h
diff -u llvm/include/llvm/Support/ToolRunner.h:1.14 llvm/include/llvm/Support/ToolRunner.h:1.15
--- llvm/include/llvm/Support/ToolRunner.h:1.14	Sat Jul 24 02:48:50 2004
+++ llvm/include/llvm/Support/ToolRunner.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===-- Support/ToolRunner.h ------------------------------------*- C++ -*-===//
+//===-- llvm/Support/ToolRunner.h -------------------------------*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -14,10 +14,10 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef TOOLRUNNER_H
-#define TOOLRUNNER_H
+#ifndef LLVM_SUPPORT_TOOLRUNNER_H
+#define LLVM_SUPPORT_TOOLRUNNER_H
 
-#include "Support/SystemUtils.h"
+#include "llvm/Support/SystemUtils.h"
 #include <exception>
 #include <vector>
 


Index: llvm/include/llvm/Support/TypeInfo.h
diff -u llvm/include/llvm/Support/TypeInfo.h:1.6 llvm/include/llvm/Support/TypeInfo.h:1.7
--- llvm/include/llvm/Support/TypeInfo.h:1.6	Fri Jun  4 15:47:19 2004
+++ llvm/include/llvm/Support/TypeInfo.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===- Support/TypeInfo.h - Support class for type_info objects -*- C++ -*-===//
+//===- llvm/Support/TypeInfo.h - Support for type_info objects -*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //
@@ -13,8 +13,8 @@
 //
 //===----------------------------------------------------------------------===//
 
-#ifndef SUPPORT_TYPEINFO_H
-#define SUPPORT_TYPEINFO_H
+#ifndef LLVM_SUPPORT_TYPEINFO_H
+#define LLVM_SUPPORT_TYPEINFO_H
 
 #include <typeinfo>
 


Index: llvm/include/llvm/Support/type_traits.h
diff -u llvm/include/llvm/Support/type_traits.h:1.1 llvm/include/llvm/Support/type_traits.h:1.2
--- llvm/include/llvm/Support/type_traits.h:1.1	Mon Feb 23 21:49:29 2004
+++ llvm/include/llvm/Support/type_traits.h	Wed Sep  1 17:55:35 2004
@@ -1,4 +1,4 @@
-//===- Support/type_traits.h - Simplfied type traits ------------*- C++ -*-===//
+//===- llvm/Support/type_traits.h - Simplfied type traits -------*- C++ -*-===//
 // 
 //                     The LLVM Compiler Infrastructure
 //






More information about the llvm-commits mailing list