Simplify base64 routine a bit.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202210 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Rui Ueyama 2014-02-25 23:49:11 +00:00
parent 95e9730310
commit 204755b283

View File

@ -70,9 +70,9 @@ static bool decodeBase64StringEntry(StringRef Str, uint32_t &Result) {
else if (Str[0] >= '0' && Str[0] <= '9') // 52..61
CharVal = Str[0] - '0' + 52;
else if (Str[0] == '+') // 62
CharVal = Str[0] - '+' + 62;
CharVal = 62;
else if (Str[0] == '/') // 63
CharVal = Str[0] - '/' + 63;
CharVal = 63;
else
return true;