From 204755b283ce4c3501790e638dd1e60a8f0c560e Mon Sep 17 00:00:00 2001 From: Rui Ueyama Date: Tue, 25 Feb 2014 23:49:11 +0000 Subject: [PATCH] Simplify base64 routine a bit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@202210 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Object/COFFObjectFile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Object/COFFObjectFile.cpp b/lib/Object/COFFObjectFile.cpp index 415b4cb0c10..41d21eed139 100644 --- a/lib/Object/COFFObjectFile.cpp +++ b/lib/Object/COFFObjectFile.cpp @@ -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; -- 2.34.1