mirror of
https://github.com/intel/llvm.git
synced 2026-01-25 01:07:04 +08:00
[X86][compiler-rt] Add missing semicolon
llvm-svn: 347519
This commit is contained in:
@@ -465,7 +465,7 @@ static void getAvailableFeatures(unsigned ECX, unsigned EDX, unsigned MaxLeaf,
|
||||
#define setFeature(F) \
|
||||
do { \
|
||||
if (F < 32) \
|
||||
Features |= 1U << (F & 0x1f) \
|
||||
Features |= 1U << (F & 0x1f); \
|
||||
else if (F < 64) \
|
||||
Features2 |= 1U << ((F - 32) & 0x1f); \
|
||||
} while (0)
|
||||
|
||||
Reference in New Issue
Block a user