diff options
Diffstat (limited to 'host/include')
| -rw-r--r-- | host/include/llvm/Config/AsmParsers.def | 3 | ||||
| -rw-r--r-- | host/include/llvm/Config/AsmPrinters.def | 4 | ||||
| -rw-r--r-- | host/include/llvm/Config/Disassemblers.def | 2 | ||||
| -rw-r--r-- | host/include/llvm/Config/Targets.def | 1 | ||||
| -rw-r--r-- | host/include/llvm/Config/config.h | 2 |
5 files changed, 8 insertions, 4 deletions
diff --git a/host/include/llvm/Config/AsmParsers.def b/host/include/llvm/Config/AsmParsers.def index dd5c70c..7e60e4e 100644 --- a/host/include/llvm/Config/AsmParsers.def +++ b/host/include/llvm/Config/AsmParsers.def @@ -24,6 +24,7 @@ # error Please define the macro LLVM_ASM_PARSER(TargetName) #endif -LLVM_ASM_PARSER(X86) LLVM_ASM_PARSER(X86) +LLVM_ASM_PARSER(ARM) +LLVM_ASM_PARSER(X86) #undef LLVM_ASM_PARSER diff --git a/host/include/llvm/Config/AsmPrinters.def b/host/include/llvm/Config/AsmPrinters.def index cefdfeb..ed417b0 100644 --- a/host/include/llvm/Config/AsmPrinters.def +++ b/host/include/llvm/Config/AsmPrinters.def @@ -24,6 +24,8 @@ # error Please define the macro LLVM_ASM_PRINTER(TargetName) #endif -LLVM_ASM_PRINTER(ARM) LLVM_ASM_PRINTER(X86) LLVM_ASM_PRINTER(X86) +LLVM_ASM_PRINTER(ARM) +LLVM_ASM_PRINTER(Mips) +LLVM_ASM_PRINTER(X86) #undef LLVM_ASM_PRINTER diff --git a/host/include/llvm/Config/Disassemblers.def b/host/include/llvm/Config/Disassemblers.def index d3a679a..4b2abdd 100644 --- a/host/include/llvm/Config/Disassemblers.def +++ b/host/include/llvm/Config/Disassemblers.def @@ -24,7 +24,7 @@ # error Please define the macro LLVM_DISASSEMBLER(TargetName) #endif -LLVM_DISASSEMBLER(X86) LLVM_DISASSEMBLER(ARM) +LLVM_DISASSEMBLER(X86) #undef LLVM_DISASSEMBLER diff --git a/host/include/llvm/Config/Targets.def b/host/include/llvm/Config/Targets.def index 9826f60..176bbbf 100644 --- a/host/include/llvm/Config/Targets.def +++ b/host/include/llvm/Config/Targets.def @@ -24,6 +24,7 @@ #endif LLVM_TARGET(ARM) +LLVM_TARGET(Mips) LLVM_TARGET(X86) #undef LLVM_TARGET diff --git a/host/include/llvm/Config/config.h b/host/include/llvm/Config/config.h index 817cf43..a2d1f4e 100644 --- a/host/include/llvm/Config/config.h +++ b/host/include/llvm/Config/config.h @@ -473,7 +473,7 @@ #define LLVM_ETCDIR "/usr/local/google/llvm/etc/llvm" /* Host triple we were built on */ -#define LLVM_HOSTTRIPLE "i386-unknown-linux" +#define LLVM_DEFAULT_TARGET_TRIPLE "i386-unknown-linux" /* Installation directory for include files */ #define LLVM_INCLUDEDIR "/usr/local/google/llvm/include" |
