aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2001-11-26 23:04:08 +0000
committerChris Lattner <sabre@nondot.org>2001-11-26 23:04:08 +0000
commit360e17eaf1a2abda82b02235dc57d26d8f83c937 (patch)
tree083ef9b6ce0a75f3351b4e4d6a51cdff563cc0bd
parent475aee944d61e30b7fe377c2852df810364d1191 (diff)
downloadexternal_llvm-360e17eaf1a2abda82b02235dc57d26d8f83c937.zip
external_llvm-360e17eaf1a2abda82b02235dc57d26d8f83c937.tar.gz
external_llvm-360e17eaf1a2abda82b02235dc57d26d8f83c937.tar.bz2
Move DataTypes.h from llvm/Support to just Support
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1399 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/Support/DataTypes.h (renamed from include/llvm/Support/DataTypes.h)0
-rw-r--r--include/llvm/Bytecode/Primitives.h2
-rw-r--r--include/llvm/CodeGen/MachineInstr.h2
-rw-r--r--include/llvm/ConstPoolVals.h2
-rw-r--r--include/llvm/Support/StringExtras.h2
-rw-r--r--include/llvm/Target/MachineInstrInfo.h2
-rw-r--r--include/llvm/Target/TargetCacheInfo.h2
-rw-r--r--include/llvm/Target/TargetInstrInfo.h2
-rw-r--r--lib/ExecutionEngine/Interpreter/Execution.cpp1
-rw-r--r--lib/ExecutionEngine/Interpreter/Interpreter.h2
10 files changed, 8 insertions, 9 deletions
diff --git a/include/llvm/Support/DataTypes.h b/include/Support/DataTypes.h
index 0b20d90..0b20d90 100644
--- a/include/llvm/Support/DataTypes.h
+++ b/include/Support/DataTypes.h
diff --git a/include/llvm/Bytecode/Primitives.h b/include/llvm/Bytecode/Primitives.h
index 178904d..e0c25a1 100644
--- a/include/llvm/Bytecode/Primitives.h
+++ b/include/llvm/Bytecode/Primitives.h
@@ -12,7 +12,7 @@
#ifndef LLVM_BYTECODE_PRIMITIVES_H
#define LLVM_BYTECODE_PRIMITIVES_H
-#include "llvm/Support/DataTypes.h"
+#include "Support/DataTypes.h"
#include <string>
#include <deque>
diff --git a/include/llvm/CodeGen/MachineInstr.h b/include/llvm/CodeGen/MachineInstr.h
index 32e9462..91ae9de 100644
--- a/include/llvm/CodeGen/MachineInstr.h
+++ b/include/llvm/CodeGen/MachineInstr.h
@@ -17,7 +17,7 @@
#include <iterator>
#include "llvm/CodeGen/InstrForest.h"
-#include "llvm/Support/DataTypes.h"
+#include "Support/DataTypes.h"
#include "llvm/Support/NonCopyable.h"
#include "llvm/Target/MachineInstrInfo.h"
#include "llvm/Annotation.h"
diff --git a/include/llvm/ConstPoolVals.h b/include/llvm/ConstPoolVals.h
index b25ca3e..c134829 100644
--- a/include/llvm/ConstPoolVals.h
+++ b/include/llvm/ConstPoolVals.h
@@ -9,7 +9,7 @@
#define LLVM_CONSTPOOLVALS_H
#include "llvm/User.h"
-#include "llvm/Support/DataTypes.h"
+#include "Support/DataTypes.h"
class ArrayType;
class StructType;
diff --git a/include/llvm/Support/StringExtras.h b/include/llvm/Support/StringExtras.h
index 569ae42..aaae857 100644
--- a/include/llvm/Support/StringExtras.h
+++ b/include/llvm/Support/StringExtras.h
@@ -9,7 +9,7 @@
#include <string>
#include <stdio.h>
-#include "llvm/Support/DataTypes.h"
+#include "Support/DataTypes.h"
class ConstPoolArray;
diff --git a/include/llvm/Target/MachineInstrInfo.h b/include/llvm/Target/MachineInstrInfo.h
index 506cb9f..01cb2d9 100644
--- a/include/llvm/Target/MachineInstrInfo.h
+++ b/include/llvm/Target/MachineInstrInfo.h
@@ -8,7 +8,7 @@
#define LLVM_TARGET_MACHINEINSTRINFO_H
#include "llvm/Target/TargetMachine.h"
-#include "llvm/Support/DataTypes.h"
+#include "Support/DataTypes.h"
#include <vector>
class MachineInstrDescriptor;
diff --git a/include/llvm/Target/TargetCacheInfo.h b/include/llvm/Target/TargetCacheInfo.h
index 67b549c..21436d0 100644
--- a/include/llvm/Target/TargetCacheInfo.h
+++ b/include/llvm/Target/TargetCacheInfo.h
@@ -11,7 +11,7 @@
#define LLVM_TARGET_MACHINECACHEINFO_H
#include "llvm/Target/TargetMachine.h"
-#include "llvm/Support/DataTypes.h"
+#include "Support/DataTypes.h"
#include <vector>
diff --git a/include/llvm/Target/TargetInstrInfo.h b/include/llvm/Target/TargetInstrInfo.h
index 506cb9f..01cb2d9 100644
--- a/include/llvm/Target/TargetInstrInfo.h
+++ b/include/llvm/Target/TargetInstrInfo.h
@@ -8,7 +8,7 @@
#define LLVM_TARGET_MACHINEINSTRINFO_H
#include "llvm/Target/TargetMachine.h"
-#include "llvm/Support/DataTypes.h"
+#include "Support/DataTypes.h"
#include <vector>
class MachineInstrDescriptor;
diff --git a/lib/ExecutionEngine/Interpreter/Execution.cpp b/lib/ExecutionEngine/Interpreter/Execution.cpp
index 524237b..538e39a 100644
--- a/lib/ExecutionEngine/Interpreter/Execution.cpp
+++ b/lib/ExecutionEngine/Interpreter/Execution.cpp
@@ -12,7 +12,6 @@
#include "llvm/Type.h"
#include "llvm/ConstPoolVals.h"
#include "llvm/Assembly/Writer.h"
-#include "llvm/Support/DataTypes.h"
#include "llvm/Target/TargetData.h"
#include "llvm/GlobalVariable.h"
#include <math.h> // For fmod
diff --git a/lib/ExecutionEngine/Interpreter/Interpreter.h b/lib/ExecutionEngine/Interpreter/Interpreter.h
index 7e1fde1..44b382b 100644
--- a/lib/ExecutionEngine/Interpreter/Interpreter.h
+++ b/lib/ExecutionEngine/Interpreter/Interpreter.h
@@ -13,7 +13,7 @@
#include "llvm/Module.h"
#include "llvm/Method.h"
-#include "llvm/Support/DataTypes.h"
+#include "Support/DataTypes.h"
#include "llvm/Assembly/CachedWriter.h"
extern CachedWriter CW; // Object to accellerate printing of LLVM