diff options
author | Stephen Hines <srhines@google.com> | 2014-05-06 17:53:31 -0700 |
---|---|---|
committer | Stephen Hines <srhines@google.com> | 2014-05-06 17:53:31 -0700 |
commit | c2e167a48f25a600b2f531a278144ab3953c0e2d (patch) | |
tree | de074dee14887d469a5b8090176c4906f96a52b7 /device | |
parent | 7e3bc2d73a00a663afe78dbf4ff37374b05326d5 (diff) | |
download | external_llvm-c2e167a48f25a600b2f531a278144ab3953c0e2d.zip external_llvm-c2e167a48f25a600b2f531a278144ab3953c0e2d.tar.gz external_llvm-c2e167a48f25a600b2f531a278144ab3953c0e2d.tar.bz2 |
We need to build the ARM components for AArch64 as well.
Bug: 14474874
Change-Id: I37d5a95db83c31bb77cf2e2b5686d8aa329fd7d8
Diffstat (limited to 'device')
-rw-r--r-- | device/include/llvm/Config/AsmParsers.def | 1 | ||||
-rw-r--r-- | device/include/llvm/Config/AsmPrinters.def | 1 | ||||
-rw-r--r-- | device/include/llvm/Config/Disassemblers.def | 1 | ||||
-rw-r--r-- | device/include/llvm/Config/Targets.def | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/device/include/llvm/Config/AsmParsers.def b/device/include/llvm/Config/AsmParsers.def index ca3af2c..b2cfbe2 100644 --- a/device/include/llvm/Config/AsmParsers.def +++ b/device/include/llvm/Config/AsmParsers.def @@ -31,6 +31,7 @@ #elif defined(__i386__) || defined(__x86_64__) LLVM_ASM_PARSER(X86) #elif defined(__aarch64__) + LLVM_ASM_PARSER(ARM) LLVM_ASM_PARSER(AArch64) #else # error Unsupported TARGET_ARCH for LLVM_ASM_PARSER diff --git a/device/include/llvm/Config/AsmPrinters.def b/device/include/llvm/Config/AsmPrinters.def index 3a396c2..96e2f56 100644 --- a/device/include/llvm/Config/AsmPrinters.def +++ b/device/include/llvm/Config/AsmPrinters.def @@ -31,6 +31,7 @@ #elif defined(__i386__) || defined(__x86_64__) LLVM_ASM_PRINTER(X86) #elif defined(__aarch64__) + LLVM_ASM_PRINTER(ARM) LLVM_ASM_PRINTER(AArch64) #else # error Unsupported TARGET_ARCH for LLVM_ASM_PRINTER diff --git a/device/include/llvm/Config/Disassemblers.def b/device/include/llvm/Config/Disassemblers.def index aba88f8..0761902 100644 --- a/device/include/llvm/Config/Disassemblers.def +++ b/device/include/llvm/Config/Disassemblers.def @@ -31,6 +31,7 @@ #elif defined(__i386__) || defined(__x86_64__) LLVM_DISASSEMBLER(X86) #elif defined(__aarch64__) + LLVM_DISASSEMBLER(ARM) LLVM_DISASSEMBLER(AArch64) #else # error Unsupported TARGET_ARCH for LLVM_DISASSEMBLER diff --git a/device/include/llvm/Config/Targets.def b/device/include/llvm/Config/Targets.def index f30c81f..014ef14 100644 --- a/device/include/llvm/Config/Targets.def +++ b/device/include/llvm/Config/Targets.def @@ -30,6 +30,7 @@ #elif defined(__i386__) || defined(__x86_64__) LLVM_TARGET(X86) #elif defined(__aarch64__) + LLVM_TARGET(ARM) LLVM_TARGET(AArch64) #else # error Unsupported TARGET_ARCH for LLVM_TARGET |