summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>2017-08-19 08:22:54 +0000
committeruros <uros@138bc75d-0d04-0410-961f-82ee72b054a4>2017-08-19 08:22:54 +0000
commitba10013d8e3f4effe1a64daaf845b0f805cba48e (patch)
tree0e657a1729b5c0aff048ce2572f0a6108eac6123
parente38c52ae1656930316cca49e66d83075b66122b7 (diff)
downloadgcc-ba10013d8e3f4effe1a64daaf845b0f805cba48e.tar.gz
PR target/81894
* doc/extend.texi (x86 Built-in Functions): Correct the name of __builtin_ia32_lzcnt_u16. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/branches/gcc-7-branch@251198 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/ChangeLog6
-rw-r--r--gcc/doc/extend.texi2
2 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ab60c7861d8..6331620430a 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-17 Uros Bizjak <ubizjak@gmail.com>
Backport from mainline
diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index a5edb3264e3..bac9d022420 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -20635,7 +20635,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