[X86][compiler-rt] Add missing semicolon
authorBenjamin Kramer <benny.kra@googlemail.com>
Sat, 24 Nov 2018 20:57:03 +0000 (20:57 +0000)
committerBenjamin Kramer <benny.kra@googlemail.com>
Sat, 24 Nov 2018 20:57:03 +0000 (20:57 +0000)
llvm-svn: 347519

compiler-rt/lib/builtins/cpu_model.c

index c0354a8..fb2b899 100644 (file)
@@ -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)