aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorManish V Badarkhe <Manish.Badarkhe@arm.com>2020-10-07 16:04:06 +0100
committerManish Pandey <manish.pandey2@arm.com>2020-10-12 10:40:22 +0000
commitc959ea78e527a6ba2ac406ed16f2ca05b0f6ee7c (patch)
tree643f75ef76c6c94f798a4c9e667a73b724f109d4 /Makefile
parente1b8cd1a582ddc4858bd685bc2319e56793edd97 (diff)
Remove deprecated macro from TF-A code
Removed '__ASSEMBLY__' deprecated macro from TF-A code Change-Id: I9082a568b695acb5b903f509db11c8672b62d9d0 Signed-off-by: Manish V Badarkhe <Manish.Badarkhe@arm.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a9a4d9058a..cb47491a45 100644
--- a/Makefile
+++ b/Makefile
@@ -1067,8 +1067,7 @@ ifneq ($(findstring clang,$(notdir $(CC))),)
else
CPPFLAGS += -Wno-error=deprecated-declarations -Wno-error=cpp
endif
-# __ASSEMBLY__ is deprecated in favor of the compiler-builtin __ASSEMBLER__.
-ASFLAGS += -D__ASSEMBLY__
+
# AARCH32/AARCH64 macros are deprecated in favor of the compiler-builtin __aarch64__.
ifeq (${ARCH},aarch32)
$(eval $(call add_define,AARCH32))