Disable warning triggered in Clang r271374

http://b/28149048
http://b/29823425

Disable -Wconstant-conversion that gets triggered in
native/imageproc/to_rgba.c.

Test: Tested build, boot and common usage for Arm, Arm64, x86, x86_64,
Mips images in AOSP and internal branch.

Change-Id: Ia8dbe49a1a8577599244642cbd2e3bb17ec1f83c
This commit is contained in:
Pirama Arumuga Nainar
2016-06-28 22:09:50 -07:00
parent e2994438d2
commit b6709700db

View File

@@ -50,4 +50,8 @@ LOCAL_SHARED_LIBRARIES := liblog libutils libfilterfw
LOCAL_CFLAGS += -Wall -Werror -Wunused -Wunreachable-code
# Bug: http://b/29823425 Disable constant-conversion warning triggered in
# native/imageproc/to_rgba.c
LOCAL_CFLAGS += -Wno-constant-conversion
include $(BUILD_SHARED_LIBRARY)