[llvm-commits] CVS: llvm/lib/Target/PowerPC/PPC32AsmPrinter.cpp PPC32CodeEmitter.cpp PPC32ISelSimple.cpp PPC32RegisterInfo.cpp PPC64AsmPrinter.cpp PPC64ISelSimple.cpp PPC64RegisterInfo.cpp PowerPCBranchSelector.cpp PowerPCTargetMachine.cpp

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



Changes in directory llvm/lib/Target/PowerPC:

PPC32AsmPrinter.cpp updated: 1.56 -> 1.57
PPC32CodeEmitter.cpp updated: 1.3 -> 1.4
PPC32ISelSimple.cpp updated: 1.75 -> 1.76
PPC32RegisterInfo.cpp updated: 1.4 -> 1.5
PPC64AsmPrinter.cpp updated: 1.9 -> 1.10
PPC64ISelSimple.cpp updated: 1.12 -> 1.13
PPC64RegisterInfo.cpp updated: 1.4 -> 1.5
PowerPCBranchSelector.cpp updated: 1.4 -> 1.5
PowerPCTargetMachine.cpp updated: 1.32 -> 1.33
---
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:  (+22 -22)

Index: llvm/lib/Target/PowerPC/PPC32AsmPrinter.cpp
diff -u llvm/lib/Target/PowerPC/PPC32AsmPrinter.cpp:1.56 llvm/lib/Target/PowerPC/PPC32AsmPrinter.cpp:1.57
--- llvm/lib/Target/PowerPC/PPC32AsmPrinter.cpp:1.56	Sun Aug 29 21:28:06 2004
+++ llvm/lib/Target/PowerPC/PPC32AsmPrinter.cpp	Wed Sep  1 17:55:36 2004
@@ -29,10 +29,10 @@
 #include "llvm/CodeGen/MachineInstr.h"
 #include "llvm/CodeGen/ValueTypes.h"
 #include "llvm/Support/Mangler.h"
-#include "Support/CommandLine.h"
-#include "Support/Debug.h"
-#include "Support/Statistic.h"
-#include "Support/StringExtras.h"
+#include "llvm/Support/CommandLine.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/Statistic.h"
+#include "llvm/ADT/StringExtras.h"
 #include <set>
 using namespace llvm;
 


Index: llvm/lib/Target/PowerPC/PPC32CodeEmitter.cpp
diff -u llvm/lib/Target/PowerPC/PPC32CodeEmitter.cpp:1.3 llvm/lib/Target/PowerPC/PPC32CodeEmitter.cpp:1.4
--- llvm/lib/Target/PowerPC/PPC32CodeEmitter.cpp:1.3	Tue Aug 10 19:09:42 2004
+++ llvm/lib/Target/PowerPC/PPC32CodeEmitter.cpp	Wed Sep  1 17:55:36 2004
@@ -15,7 +15,7 @@
 #include "llvm/CodeGen/MachineCodeEmitter.h"
 #include "llvm/CodeGen/MachineFunctionPass.h"
 #include "llvm/CodeGen/Passes.h"
-#include "Support/Debug.h"
+#include "llvm/Support/Debug.h"
 
 namespace llvm {
 


Index: llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp
diff -u llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp:1.75 llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp:1.76
--- llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp:1.75	Sun Aug 29 03:19:32 2004
+++ llvm/lib/Target/PowerPC/PPC32ISelSimple.cpp	Wed Sep  1 17:55:36 2004
@@ -26,8 +26,8 @@
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Support/GetElementPtrTypeIterator.h"
 #include "llvm/Support/InstVisitor.h"
-#include "Support/Debug.h"
-#include "Support/Statistic.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/Statistic.h"
 #include <vector>
 using namespace llvm;
 


Index: llvm/lib/Target/PowerPC/PPC32RegisterInfo.cpp
diff -u llvm/lib/Target/PowerPC/PPC32RegisterInfo.cpp:1.4 llvm/lib/Target/PowerPC/PPC32RegisterInfo.cpp:1.5
--- llvm/lib/Target/PowerPC/PPC32RegisterInfo.cpp:1.4	Thu Aug 26 23:28:10 2004
+++ llvm/lib/Target/PowerPC/PPC32RegisterInfo.cpp	Wed Sep  1 17:55:36 2004
@@ -24,9 +24,9 @@
 #include "llvm/Target/TargetFrameInfo.h"
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Target/TargetOptions.h"
-#include "Support/CommandLine.h"
-#include "Support/Debug.h"
-#include "Support/STLExtras.h"
+#include "llvm/Support/CommandLine.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/STLExtras.h"
 #include <cstdlib>
 #include <iostream>
 using namespace llvm;


Index: llvm/lib/Target/PowerPC/PPC64AsmPrinter.cpp
diff -u llvm/lib/Target/PowerPC/PPC64AsmPrinter.cpp:1.9 llvm/lib/Target/PowerPC/PPC64AsmPrinter.cpp:1.10
--- llvm/lib/Target/PowerPC/PPC64AsmPrinter.cpp:1.9	Thu Aug 19 16:56:12 2004
+++ llvm/lib/Target/PowerPC/PPC64AsmPrinter.cpp	Wed Sep  1 17:55:36 2004
@@ -25,11 +25,11 @@
 #include "llvm/CodeGen/MachineFunctionPass.h"
 #include "llvm/CodeGen/MachineInstr.h"
 #include "llvm/Support/Mangler.h"
-#include "Support/CommandLine.h"
-#include "Support/Debug.h"
-#include "Support/MathExtras.h"
-#include "Support/Statistic.h"
-#include "Support/StringExtras.h"
+#include "llvm/Support/CommandLine.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/Support/MathExtras.h"
+#include "llvm/ADT/Statistic.h"
+#include "llvm/ADT/StringExtras.h"
 #include <set>
 
 namespace llvm {


Index: llvm/lib/Target/PowerPC/PPC64ISelSimple.cpp
diff -u llvm/lib/Target/PowerPC/PPC64ISelSimple.cpp:1.12 llvm/lib/Target/PowerPC/PPC64ISelSimple.cpp:1.13
--- llvm/lib/Target/PowerPC/PPC64ISelSimple.cpp:1.12	Sun Aug 29 17:02:43 2004
+++ llvm/lib/Target/PowerPC/PPC64ISelSimple.cpp	Wed Sep  1 17:55:36 2004
@@ -26,8 +26,8 @@
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Support/GetElementPtrTypeIterator.h"
 #include "llvm/Support/InstVisitor.h"
-#include "Support/Debug.h"
-#include "Support/Statistic.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/Statistic.h"
 #include <vector>
 using namespace llvm;
 


Index: llvm/lib/Target/PowerPC/PPC64RegisterInfo.cpp
diff -u llvm/lib/Target/PowerPC/PPC64RegisterInfo.cpp:1.4 llvm/lib/Target/PowerPC/PPC64RegisterInfo.cpp:1.5
--- llvm/lib/Target/PowerPC/PPC64RegisterInfo.cpp:1.4	Thu Aug 26 23:28:10 2004
+++ llvm/lib/Target/PowerPC/PPC64RegisterInfo.cpp	Wed Sep  1 17:55:36 2004
@@ -24,9 +24,9 @@
 #include "llvm/Target/TargetFrameInfo.h"
 #include "llvm/Target/TargetMachine.h"
 #include "llvm/Target/TargetOptions.h"
-#include "Support/CommandLine.h"
-#include "Support/Debug.h"
-#include "Support/STLExtras.h"
+#include "llvm/Support/CommandLine.h"
+#include "llvm/Support/Debug.h"
+#include "llvm/ADT/STLExtras.h"
 #include <cstdlib>
 #include <iostream>
 using namespace llvm;


Index: llvm/lib/Target/PowerPC/PowerPCBranchSelector.cpp
diff -u llvm/lib/Target/PowerPC/PowerPCBranchSelector.cpp:1.4 llvm/lib/Target/PowerPC/PowerPCBranchSelector.cpp:1.5
--- llvm/lib/Target/PowerPC/PowerPCBranchSelector.cpp:1.4	Mon Aug 16 23:58:50 2004
+++ llvm/lib/Target/PowerPC/PowerPCBranchSelector.cpp	Wed Sep  1 17:55:36 2004
@@ -22,7 +22,7 @@
 #include "PPC32InstrInfo.h"
 #include "llvm/CodeGen/MachineFunctionPass.h"
 #include "llvm/CodeGen/MachineFunction.h"
-#include "Support/Debug.h"
+#include "llvm/Support/Debug.h"
 #include <map>
 using namespace llvm;
 


Index: llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp
diff -u llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.32 llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.33
--- llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp:1.32	Fri Aug 20 13:09:18 2004
+++ llvm/lib/Target/PowerPC/PowerPCTargetMachine.cpp	Wed Sep  1 17:55:36 2004
@@ -25,7 +25,7 @@
 #include "llvm/Target/TargetOptions.h"
 #include "llvm/Target/TargetMachineRegistry.h"
 #include "llvm/Transforms/Scalar.h"
-#include "Support/CommandLine.h"
+#include "llvm/Support/CommandLine.h"
 #include <iostream>
 using namespace llvm;
 






More information about the llvm-commits mailing list