[X86] Synchronize a macro in getAvailableFeatures in Host.cpp with the same macro in compiler-rt to fix a negative shift amount warning.

llvm-svn: 347518
This commit is contained in:
Craig Topper 2018-11-24 20:26:11 +00:00
parent 428caa398c
commit 28659f5dcb
1 changed files with 3 additions and 3 deletions

View File

@ -903,11 +903,11 @@ static void getAvailableFeatures(unsigned ECX, unsigned EDX, unsigned MaxLeaf,
auto setFeature = [&](unsigned F) {
if (F < 32)
Features |= 1 << F;
Features |= 1U << (F & 0x1f);
else if (F < 64)
Features2 |= 1 << (F - 32);
Features2 |= 1U << ((F - 32) & 0x1f);
else if (F < 96)
Features3 |= 1 << (F - 64);
Features3 |= 1U << ((F - 64) & 0x1f);
else
llvm_unreachable("Unexpected FeatureBit");
};