summaryrefslogtreecommitdiffstats
path: root/libpixelflinger
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2015-11-20 10:21:55 -0800
committerChih-Hung Hsieh <chh@google.com>2015-11-20 10:21:55 -0800
commitcaa8810c644c67d79dcab2d7026baa41e01f935b (patch)
tree3d78c165b699dc55ccad13239b03ab96ec35c352 /libpixelflinger
parent389cab802a89b60bda7630762536785f8934d5fb (diff)
downloadsystem_core-caa8810c644c67d79dcab2d7026baa41e01f935b.tar.gz
system_core-caa8810c644c67d79dcab2d7026baa41e01f935b.tar.bz2
system_core-caa8810c644c67d79dcab2d7026baa41e01f935b.zip
Add explicit cast to shut off clang warnings.
* The literals are signed int type and got warnings about .... cannot be narrowed to type int16_t [-Wc++11-narrowing] Change-Id: I156d8e456c70840953aebb24739f94256248b810
Diffstat (limited to 'libpixelflinger')
-rw-r--r--libpixelflinger/tests/arch-mips64/disassembler/mips64_disassembler_test.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/libpixelflinger/tests/arch-mips64/disassembler/mips64_disassembler_test.cpp b/libpixelflinger/tests/arch-mips64/disassembler/mips64_disassembler_test.cpp
index 41f6f3ef9..22efa9fb6 100644
--- a/libpixelflinger/tests/arch-mips64/disassembler/mips64_disassembler_test.cpp
+++ b/libpixelflinger/tests/arch-mips64/disassembler/mips64_disassembler_test.cpp
@@ -123,13 +123,13 @@ struct test_branches_table_entry_t
};
static test_branches_table_entry_t test_branches_table [] = {
- { 0x1000ffff, "b\t", 0xffff },
- { 0x13df0008, "beq\ts8,ra,", 0x8 },
- { 0x042100ff, "bgez\tat,", 0xff },
- { 0x1c40ff00, "bgtz\tv0,", 0xff00 },
- { 0x18605555, "blez\tv1,", 0x5555 },
- { 0x0480aaaa, "bltz\ta0,", 0xaaaa },
- { 0x14a68888, "bne\ta1,a2,", 0x8888 },
+ { 0x1000ffff, "b\t", static_cast<int16_t>(0xffff) },
+ { 0x13df0008, "beq\ts8,ra,", 0x8 },
+ { 0x042100ff, "bgez\tat,", 0xff },
+ { 0x1c40ff00, "bgtz\tv0,", static_cast<int16_t>(0xff00) },
+ { 0x18605555, "blez\tv1,", 0x5555 },
+ { 0x0480aaaa, "bltz\ta0,", static_cast<int16_t>(0xaaaa) },
+ { 0x14a68888, "bne\ta1,a2,", static_cast<int16_t>(0x8888) },
};
struct test_jump_table_entry_t