Add typecast to silence -Wswitch warning introduced by r153153.

llvm-svn: 153155
This commit is contained in:
Craig Topper 2012-03-21 02:28:53 +00:00
parent 9cfc69c779
commit 344e0128ba
1 changed files with 1 additions and 1 deletions

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;