diff options
author | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2008-10-31 10:24:31 +0000 |
---|---|---|
committer | Sanjiv Gupta <sanjiv.gupta@microchip.com> | 2008-10-31 10:24:31 +0000 |
commit | 73608a89a64401985990f8046f75cdd82309e92f (patch) | |
tree | b051d1f501a0725509e39370a54ee266c3ceceee | |
parent | df2aa1efbb940aa7bf5ef49235e1d7aff0d52128 (diff) |
Fixed build warning. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58503 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Lex/Preprocessor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Lex/Preprocessor.cpp b/lib/Lex/Preprocessor.cpp index c8c64bf3da..901bcd08ce 100644 --- a/lib/Lex/Preprocessor.cpp +++ b/lib/Lex/Preprocessor.cpp @@ -570,8 +570,8 @@ static void InitializePredefinedMacros(Preprocessor &PP, char MacroBuf[60]; sprintf(MacroBuf, "__INTMAX_MAX__=%lld", (TI.getIntMaxType() == TargetInfo::UnsignedLongLong? - (1LL<<(TI.getLongLongWidth() -1)) : - (1LL<<(TI.getLongLongWidth() -2) -1))); + (1LL << (TI.getLongLongWidth() - 1)) : + ((1LL << (TI.getLongLongWidth() - 2)) - 1))); DefineBuiltinMacro(Buf, MacroBuf); if (TI.getIntMaxType() == TargetInfo::UnsignedLongLong) |