diff options
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/Bytecode/Primitives.h | 2 | ||||
-rw-r--r-- | include/llvm/CodeGen/MachineInstr.h | 2 | ||||
-rw-r--r-- | include/llvm/ConstPoolVals.h | 2 | ||||
-rw-r--r-- | include/llvm/Support/DataTypes.h | 34 | ||||
-rw-r--r-- | include/llvm/Support/StringExtras.h | 2 | ||||
-rw-r--r-- | include/llvm/Target/MachineInstrInfo.h | 2 | ||||
-rw-r--r-- | include/llvm/Target/TargetCacheInfo.h | 2 | ||||
-rw-r--r-- | include/llvm/Target/TargetInstrInfo.h | 2 |
8 files changed, 7 insertions, 41 deletions
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/DataTypes.h b/include/llvm/Support/DataTypes.h deleted file mode 100644 index 0b20d90..0000000 --- a/include/llvm/Support/DataTypes.h +++ /dev/null @@ -1,34 +0,0 @@ -//===-- include/Support/DataTypes.h - Define fixed size types ----*- C++ -*--=// -// -// This file contains definitions to figure out the size of _HOST_ data types. -// This file is important because different host OS's define different macros, -// which makes portability tough. This file exports the following definitions: -// -// LITTLE_ENDIAN: is #define'd if the host is little endian -// int64_t : is a typedef for the signed 64 bit system type -// uint64_t : is a typedef for the unsigned 64 bit system type -// -// No library is required when using these functinons. -// -//===----------------------------------------------------------------------===// - -// TODO: This file sucks. Not only does it not work, but this stuff should be -// autoconfiscated anyways. Major FIXME - - -#ifndef LLVM_SUPPORT_DATATYPES_H -#define LLVM_SUPPORT_DATATYPES_H - -#ifdef LINUX -#define __STDC_LIMIT_MACROS 1 -#include <stdint.h> // Defined by ISO C 99 -#include <endian.h> - -#else -#include <sys/types.h> -#ifdef _LITTLE_ENDIAN -#define LITTLE_ENDIAN 1 -#endif -#endif - -#endif 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; |