summaryrefslogtreecommitdiff
path: root/ArmPkg/Include
diff options
context:
space:
mode:
authorRebecca Cran <quic_rcran@quicinc.com>2022-05-04 02:48:11 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2022-05-13 14:58:54 +0000
commit35d9b7ea2d46f784365c14eb293fcd802a2bafff (patch)
treeee26d3033b9ae9e2bb5ca673a0f68647ce8a0d72 /ArmPkg/Include
parentef01d63ef3c9d2e7f39755b9c2b6bf40f6076ef3 (diff)
downloadedk2-35d9b7ea2d46f784365c14eb293fcd802a2bafff.zip
edk2-35d9b7ea2d46f784365c14eb293fcd802a2bafff.tar.gz
edk2-35d9b7ea2d46f784365c14eb293fcd802a2bafff.tar.bz2
ArmPkg: Remove RVCT support
RVCT is obsolete and no longer used. Remove support for it. Signed-off-by: Rebecca Cran <quic_rcran@quicinc.com> Reviewed-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'ArmPkg/Include')
-rw-r--r--ArmPkg/Include/AsmMacroExport.inc23
1 files changed, 0 insertions, 23 deletions
diff --git a/ArmPkg/Include/AsmMacroExport.inc b/ArmPkg/Include/AsmMacroExport.inc
deleted file mode 100644
index 615feee..0000000
--- a/ArmPkg/Include/AsmMacroExport.inc
+++ /dev/null
@@ -1,23 +0,0 @@
-;%HEADER%
-;/** @file
-; Macros to centralize the EXPORT, AREA, and definition of an assembly
-; function. The AREA prefix is required to put the function in its own
-; section so that removal of unused functions in the final link is performed.
-; This provides equivalent functionality to the compiler's --split-sections
-; option.
-;
-; Copyright (c) 2015 HP Development Company, L.P.
-;
-; SPDX-License-Identifier: BSD-2-Clause-Patent
-;
-;**/
-
-
- MACRO
- RVCT_ASM_EXPORT $func
- EXPORT $func
- AREA s_$func, CODE, READONLY
-$func
- MEND
-
- END