[llvm-commits] CVS: llvm/lib/Debugger/Debugger.cpp ProgramInfo.cpp SourceFile.cpp UnixLocalInferiorProcess.cpp

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



Changes in directory llvm/lib/Debugger:

Debugger.cpp updated: 1.2 -> 1.3
ProgramInfo.cpp updated: 1.5 -> 1.6
SourceFile.cpp updated: 1.1 -> 1.2
UnixLocalInferiorProcess.cpp updated: 1.5 -> 1.6
---
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:  (+8 -8)

Index: llvm/lib/Debugger/Debugger.cpp
diff -u llvm/lib/Debugger/Debugger.cpp:1.2 llvm/lib/Debugger/Debugger.cpp:1.3
--- llvm/lib/Debugger/Debugger.cpp:1.2	Wed Jan 14 14:58:17 2004
+++ llvm/lib/Debugger/Debugger.cpp	Wed Sep  1 17:55:35 2004
@@ -16,7 +16,7 @@
 #include "llvm/ModuleProvider.h"
 #include "llvm/Bytecode/Reader.h"
 #include "llvm/Debugger/InferiorProcess.h"
-#include "Support/StringExtras.h"
+#include "llvm/ADT/StringExtras.h"
 using namespace llvm;
 
 /// Debugger constructor - Initialize the debugger to its initial, empty, state.


Index: llvm/lib/Debugger/ProgramInfo.cpp
diff -u llvm/lib/Debugger/ProgramInfo.cpp:1.5 llvm/lib/Debugger/ProgramInfo.cpp:1.6
--- llvm/lib/Debugger/ProgramInfo.cpp:1.5	Thu Jul 29 12:15:38 2004
+++ llvm/lib/Debugger/ProgramInfo.cpp	Wed Sep  1 17:55:35 2004
@@ -20,9 +20,9 @@
 #include "llvm/Module.h"
 #include "llvm/Debugger/SourceFile.h"
 #include "llvm/Debugger/SourceLanguage.h"
-#include "Support/FileUtilities.h"
-#include "Support/SlowOperationInformer.h"
-#include "Support/STLExtras.h"
+#include "llvm/Support/FileUtilities.h"
+#include "llvm/Support/SlowOperationInformer.h"
+#include "llvm/ADT/STLExtras.h"
 #include <iostream>
 
 using namespace llvm;


Index: llvm/lib/Debugger/SourceFile.cpp
diff -u llvm/lib/Debugger/SourceFile.cpp:1.1 llvm/lib/Debugger/SourceFile.cpp:1.2
--- llvm/lib/Debugger/SourceFile.cpp:1.1	Sun Jan  4 23:25:10 2004
+++ llvm/lib/Debugger/SourceFile.cpp	Wed Sep  1 17:55:35 2004
@@ -12,8 +12,8 @@
 //===----------------------------------------------------------------------===//
 
 #include "llvm/Debugger/SourceFile.h"
-#include "Support/SlowOperationInformer.h"
-#include "Support/FileUtilities.h"
+#include "llvm/Support/SlowOperationInformer.h"
+#include "llvm/Support/FileUtilities.h"
 #include <iostream>
 #include <cerrno>
 #include <fcntl.h>


Index: llvm/lib/Debugger/UnixLocalInferiorProcess.cpp
diff -u llvm/lib/Debugger/UnixLocalInferiorProcess.cpp:1.5 llvm/lib/Debugger/UnixLocalInferiorProcess.cpp:1.6
--- llvm/lib/Debugger/UnixLocalInferiorProcess.cpp:1.5	Thu Jul 29 12:15:38 2004
+++ llvm/lib/Debugger/UnixLocalInferiorProcess.cpp	Wed Sep  1 17:55:35 2004
@@ -32,8 +32,8 @@
 #include "llvm/CodeGen/IntrinsicLowering.h"
 #include "llvm/ExecutionEngine/GenericValue.h"
 #include "llvm/ExecutionEngine/ExecutionEngine.h"
-#include "Support/FileUtilities.h"
-#include "Support/StringExtras.h"
+#include "llvm/Support/FileUtilities.h"
+#include "llvm/ADT/StringExtras.h"
 #include <cerrno>
 #include <csignal>
 #include <unistd.h>        // Unix-specific debugger support






More information about the llvm-commits mailing list