summaryrefslogtreecommitdiff
path: root/BaseTools/Source/C
diff options
context:
space:
mode:
authorRebecca Cran <quic_rcran@quicinc.com>2022-05-04 02:48:20 +0800
committermergify[bot] <37929162+mergify[bot]@users.noreply.github.com>2022-05-13 14:58:54 +0000
commit708620d29db89d03e822b8d17dc75fbac865c6dc (patch)
tree857661b9fb50ca7889101e4eeb51fc3ca8b9b299 /BaseTools/Source/C
parent57c84113a14e9aef63bfa63ebfc9366cb7f87a55 (diff)
downloadedk2-708620d29db89d03e822b8d17dc75fbac865c6dc.zip
edk2-708620d29db89d03e822b8d17dc75fbac865c6dc.tar.gz
edk2-708620d29db89d03e822b8d17dc75fbac865c6dc.tar.bz2
BaseTools: Remove RVCT supportedk2-stable202205-rc1
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 'BaseTools/Source/C')
-rw-r--r--BaseTools/Source/C/Include/Common/BaseTypes.h10
1 files changed, 1 insertions, 9 deletions
diff --git a/BaseTools/Source/C/Include/Common/BaseTypes.h b/BaseTools/Source/C/Include/Common/BaseTypes.h
index 150980b..e669da8 100644
--- a/BaseTools/Source/C/Include/Common/BaseTypes.h
+++ b/BaseTools/Source/C/Include/Common/BaseTypes.h
@@ -57,15 +57,7 @@
#define NULL ((VOID *) 0)
#endif
-#ifdef __CC_ARM
- //
- // Older RVCT ARM compilers don't fully support #pragma pack and require __packed
- // as a prefix for the structure.
- //
- #define PACKED __packed
-#else
- #define PACKED
-#endif
+#define PACKED
//
// Support for variable length argument lists using the ANSI standard.