Fix warnings in build on clang-x86_64-freebsd buildbot.

llvm-svn: 66344
This commit is contained in:
Mike Stump
2009-03-07 18:35:41 +00:00
parent 06cc45ec85
commit 82d8d559bb
3 changed files with 5 additions and 3 deletions

View File

@@ -440,7 +440,7 @@ static void DefineTypeSize(const char *MacroName, unsigned TypeWidth,
const char *ValSuffix, bool isSigned,
std::vector<char> &Buf) {
char MacroBuf[60];
uint64_t MaxVal;
long long MaxVal;
if (isSigned)
MaxVal = (1LL << (TypeWidth - 1)) - 1;
else