diff options
Diffstat (limited to 'include/llvm/Bitcode/BitCodes.h')
-rw-r--r-- | include/llvm/Bitcode/BitCodes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/Bitcode/BitCodes.h b/include/llvm/Bitcode/BitCodes.h index 1d3087c5a0..59d57e77f2 100644 --- a/include/llvm/Bitcode/BitCodes.h +++ b/include/llvm/Bitcode/BitCodes.h @@ -136,6 +136,7 @@ public: if (C == '.') return 62; if (C == '_') return 63; assert(0 && "Not a value Char6 character!"); + return 0; } static char DecodeChar6(unsigned V) { @@ -146,6 +147,7 @@ public: if (V == 62) return '.'; if (V == 63) return '_'; assert(0 && "Not a value Char6 character!"); + return ' '; } }; |