diff options
author | Mike Stump <mrs@apple.com> | 2009-03-07 18:35:41 +0000 |
---|---|---|
committer | Mike Stump <mrs@apple.com> | 2009-03-07 18:35:41 +0000 |
commit | 2ace928d2799dfe4f2e0f6e5a15196e30dedc04a (patch) | |
tree | 053a7909aea3016556ae4f0addb9eb9da1427c12 /lib/Lex/Preprocessor.cpp | |
parent | 863cffbaf66b0a46df17d45d8b497d762dcabd6b (diff) |
Fix warnings in build on clang-x86_64-freebsd buildbot.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@66344 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Lex/Preprocessor.cpp')
-rw-r--r-- | lib/Lex/Preprocessor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index 2a9fa0a85b..e20b42ac64 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/lib/Lex/Preprocessor.cpp @@ -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 |