aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/AArch64/Utils
diff options
context:
space:
mode:
authorChris Wailes <chriswailes@google.com>2014-06-04 15:16:35 -0700
committerChris Wailes <chriswailes@google.com>2014-06-04 15:16:35 -0700
commit7cfe7b81886cb23fc41ff32b5f2bc5941dc3f682 (patch)
tree913476acb4cff19a0e80154c264d00260c62089e /lib/Target/AArch64/Utils
parent806b35f1b384b253e41d7f56d43aef8ce3c14219 (diff)
downloadexternal_llvm-7cfe7b81886cb23fc41ff32b5f2bc5941dc3f682.zip
external_llvm-7cfe7b81886cb23fc41ff32b5f2bc5941dc3f682.tar.gz
external_llvm-7cfe7b81886cb23fc41ff32b5f2bc5941dc3f682.tar.bz2
Updated the makefiles to use AArch64 name.
The makefiles had previously used the name Arm64 for the AArch64 libraries. This patch changes all of makefiles to use the correct name for the backend. Change-Id: Ida062b1173b719b6d2519618827c3a67ede8b479
Diffstat (limited to 'lib/Target/AArch64/Utils')
-rw-r--r--lib/Target/AArch64/Utils/Android.mk16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/Target/AArch64/Utils/Android.mk b/lib/Target/AArch64/Utils/Android.mk
index 3c1d194..a3614fa 100644
--- a/lib/Target/AArch64/Utils/Android.mk
+++ b/lib/Target/AArch64/Utils/Android.mk
@@ -1,11 +1,11 @@
LOCAL_PATH := $(call my-dir)
-arm64_utils_TBLGEN_TABLES := \
+aarch64_utils_TBLGEN_TABLES := \
AArch64GenRegisterInfo.inc \
AArch64GenInstrInfo.inc \
AArch64GenSubtargetInfo.inc
-arm64_utils_SRC_FILES := \
+aarch64_utils_SRC_FILES := \
AArch64BaseInfo.cpp
# For the device
@@ -13,16 +13,16 @@ arm64_utils_SRC_FILES := \
ifneq (true,$(DISABLE_LLVM_DEVICE_BUILDS))
include $(CLEAR_VARS)
-LOCAL_SRC_FILES := $(arm64_utils_SRC_FILES)
+LOCAL_SRC_FILES := $(aarch64_utils_SRC_FILES)
LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
-LOCAL_MODULE:= libLLVMARM64Utils
+LOCAL_MODULE:= libLLVMAArch64Utils
LOCAL_MODULE_TAGS := optional
TBLGEN_TD_DIR := $(LOCAL_PATH)/..
-TBLGEN_TABLES := $(arm64_utils_TBLGEN_TABLES)
+TBLGEN_TABLES := $(aarch64_utils_TBLGEN_TABLES)
include $(LLVM_DEVICE_BUILD_MK)
include $(LLVM_TBLGEN_RULES_MK)
@@ -34,16 +34,16 @@ endif
# =====================================================
include $(CLEAR_VARS)
-LOCAL_SRC_FILES := $(arm64_utils_SRC_FILES)
+LOCAL_SRC_FILES := $(aarch64_utils_SRC_FILES)
LOCAL_C_INCLUDES += $(LOCAL_PATH)/..
-LOCAL_MODULE:= libLLVMARM64Utils
+LOCAL_MODULE:= libLLVMAArch64Utils
LOCAL_MODULE_TAGS := optional
TBLGEN_TD_DIR := $(LOCAL_PATH)/..
-TBLGEN_TABLES := $(arm64_utils_TBLGEN_TABLES)
+TBLGEN_TABLES := $(aarch64_utils_TBLGEN_TABLES)
include $(LLVM_HOST_BUILD_MK)
include $(LLVM_TBLGEN_RULES_MK)