aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJustin Chadwell <justin.chadwell@arm.com>2019-09-18 14:47:19 +0100
committerSandrine Bailleux <sandrine.bailleux@arm.com>2019-12-16 09:05:42 +0000
commit11a96e0ea04f4b2c53e6431f690d7912bb645552 (patch)
tree72986dd93c83b1263906018d0541845aefc1f050 /Makefile
parentef771a4d0dc7df042cf0fcbe0f763fd777b21eec (diff)
downloadplatform_external_arm-trusted-firmware-11a96e0ea04f4b2c53e6431f690d7912bb645552.tar.gz
platform_external_arm-trusted-firmware-11a96e0ea04f4b2c53e6431f690d7912bb645552.tar.bz2
platform_external_arm-trusted-firmware-11a96e0ea04f4b2c53e6431f690d7912bb645552.zip
Remove -Wpadded warning
-Wpadded warns whenever the C compiler automatically includes any padding in a structure. Because TF-A has a large number of structures, this occurs fairly frequently and is incredibly verbose, and as such is unlikely to ever be fixed. The utility of this warning is also extremely limited - knowing that a structure includes padding does not point to the existence of an error, and is probably quite unlikely to indicate actually buggy behaviour. Therefore, it's probably best to keep this warning off at all times. Change-Id: I0797cb75f06b4fea0d2fdc16fd5ad978a31d76ec Signed-off-by: Justin Chadwell <justin.chadwell@arm.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 0 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ef3ee4b53..b9584ca98 100644
--- a/Makefile
+++ b/Makefile
@@ -261,7 +261,6 @@ WARNING3 := -Wbad-function-cast
WARNING3 += -Wcast-qual
WARNING3 += -Wconversion
WARNING3 += -Wpacked
-WARNING3 += -Wpadded
WARNING3 += -Wpointer-arith
WARNING3 += -Wredundant-decls
WARNING3 += -Wswitch-default