Patrick Georgi has uploaded this change for review.

View Change

libpayload: Enable -Wconversion

Together with -Werror this ensures that no new conversion related issues
can appear.

BUG=b:111443775
BRANCH=none
TEST=make junit.xml has no failed builds

Change-Id: Idc37c50cae90d283bd6ec240dd7de3546485a9a9
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
---
M payloads/libpayload/Makefile.inc
1 file changed, 1 insertion(+), 1 deletion(-)

git pull ssh://review.coreboot.org:29418/coreboot refs/changes/85/32185/1
diff --git a/payloads/libpayload/Makefile.inc b/payloads/libpayload/Makefile.inc
index 7787762..ceac4ca 100644
--- a/payloads/libpayload/Makefile.inc
+++ b/payloads/libpayload/Makefile.inc
@@ -64,7 +64,7 @@
CFLAGS += -ffunction-sections -fdata-sections
CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
-CFLAGS += -Wstrict-aliasing -Wshadow -Werror
+CFLAGS += -Wstrict-aliasing -Wshadow -Werror -Wconversion

$(obj)/libpayload-config.h: $(KCONFIG_AUTOHEADER)
cmp $@ $< 2>/dev/null || cp $< $@

To view, visit change 32185. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Idc37c50cae90d283bd6ec240dd7de3546485a9a9
Gerrit-Change-Number: 32185
Gerrit-PatchSet: 1
Gerrit-Owner: Patrick Georgi <pgeorgi@google.com>
Gerrit-MessageType: newchange