"H.J. Lu" <hongjiu...@intel.com> writes: > diff --git a/gcc/config/i386/bmiintrin.h b/gcc/config/i386/bmiintrin.h > index af5d9dc..72ab114 100644 > --- a/gcc/config/i386/bmiintrin.h > +++ b/gcc/config/i386/bmiintrin.h > @@ -42,8 +42,8 @@ __tzcnt_u16 (unsigned short __X) > extern __inline unsigned int __attribute__((__gnu_inline__, > __always_inline__, __artificial__)) > __andn_u32 (unsigned int __X, unsigned int __Y) > { > - unsigned int tmp = ~(__X) & (__Y); > - return tmp; > + unsigned int __tmp = ~(__X) & (__Y); > + return __tmp;
How about just removing it? (And the parens are redundant, too.) Andreas. -- Andreas Schwab, sch...@linux-m68k.org GPG Key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5 "And now for something completely different."