diff options
author | Uros Bizjak <ubizjak@gmail.com> | 2017-08-19 10:20:20 +0200 |
---|---|---|
committer | Uros Bizjak <uros@gcc.gnu.org> | 2017-08-19 10:20:20 +0200 |
commit | 057da108c1768702bcb0045c81fbde6ad28969ca (patch) | |
tree | b6175ef34a3a9068d5897575f76aa785a0ffc56d /gcc | |
parent | 144b0d74d338d767ce2430d1d229cc54c42fb14b (diff) | |
download | gcc-057da108c1768702bcb0045c81fbde6ad28969ca.zip gcc-057da108c1768702bcb0045c81fbde6ad28969ca.tar.gz gcc-057da108c1768702bcb0045c81fbde6ad28969ca.tar.bz2 |
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: r251197
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/doc/extend.texi | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a632a46..63e228e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2017-08-19 Uros Bizjak <ubizjak@gmail.com> + + PR target/81894 + * doc/extend.texi (x86 Built-in Functions): Correct the name of + __builtin_ia32_lzcnt_u16. + 2017-08-18 Peter Bergner <bergner@vnet.ibm.com> PR target/80210 diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi index 93d542d..649be01 100644 --- a/gcc/doc/extend.texi +++ b/gcc/doc/extend.texi @@ -21053,7 +21053,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 |