зеркало из https://github.com/microsoft/clang.git
Fixed build warning. No functionality change.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58503 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
df2aa1efbb
Коммит
73608a89a6
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче