From: Craig Topper Date: Sat, 24 Nov 2018 20:14:03 +0000 (+0000) Subject: [X86][compiler-rt] Attempt to fix a warning about a shift amount being negative in... X-Git-Tag: llvmorg-8.0.0-rc1~3657 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=62e5924dd6c17eb92b368c3cbf35ef6c84eac892;p=platform%2Fupstream%2Fllvm.git [X86][compiler-rt] Attempt to fix a warning about a shift amount being negative in a macro expansion. llvm-svn: 347516 --- diff --git a/compiler-rt/lib/builtins/cpu_model.c b/compiler-rt/lib/builtins/cpu_model.c index 54f1add..239122f 100644 --- a/compiler-rt/lib/builtins/cpu_model.c +++ b/compiler-rt/lib/builtins/cpu_model.c @@ -462,12 +462,12 @@ static void getAvailableFeatures(unsigned ECX, unsigned EDX, unsigned MaxLeaf, unsigned Features2 = 0; unsigned EAX, EBX; -#define setFeature(F) \ - do { \ - if (F < 32) \ - Features |= 1 << F; \ - else if (F < 64) \ - Features2 |= 1 << (F - 32); \ +#define setFeature(F) \ + do { \ + if (F < 32) \ + Features |= 1 << (F & 0x1f) \ + else if (F < 64) \ + Features2 |= 1 << (F & 0x1f); \ } while (0) if ((EDX >> 15) & 1)