From: Uros Bizjak Date: Sat, 19 Aug 2017 08:25:14 +0000 (+0200) Subject: re PR target/81894 (Typo in x86 built-in function list) X-Git-Tag: releases/gcc-5.5.0~113 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8f3a6ff0a6a739d0a9486f2bd53429ecab71db1;p=thirdparty%2Fgcc.git re PR target/81894 (Typo in x86 built-in function list) PR target/81894 * doc/extend.texi (x86 Built-in Functions): Correct the name of __builtin_ia32_lzcnt_u16. From-SVN: r251200 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 495333698a19..66378de1b5c8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2017-08-19 Uros Bizjak + + PR target/81894 + * doc/extend.texi (x86 Built-in Functions): Correct the name of + __builtin_ia32_lzcnt_u16. + 2017-08-17 Uros Bizjak Backport from mainline diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index f8b2aa2e25c1..2d3247bb89c0 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -17222,7 +17222,7 @@ unsigned long long _pext_u64 (unsigned long long, unsigned long long) The following built-in functions are available when @option{-mlzcnt} is used. All of them generate the machine instruction that is part of the name. @smallexample -unsigned short __builtin_ia32_lzcnt_16(unsigned short); +unsigned short __builtin_ia32_lzcnt_u16(unsigned short); unsigned int __builtin_ia32_lzcnt_u32(unsigned int); unsigned long long __builtin_ia32_lzcnt_u64 (unsigned long long); @end smallexample