Add typecast to silence -Wswitch warning introduced by r153153.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@153155 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Craig Topper 2012-03-21 02:28:53 +00:00
parent 3d092dbb91
commit 9be7c94ccd

View File

@ -99,7 +99,7 @@ public:
// Used to point to big endian bytes
unsigned FullSize;
switch (Kind) {
switch ((unsigned)Kind) {
case Mips::fixup_Mips_16:
FullSize = 2;
break;