mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-06 03:38:34 +00:00
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:
parent
95e9730310
commit
204755b283
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user