diff options
author | Martin Liska <mliska@suse.cz> | 2017-05-31 13:40:13 +0200 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2017-05-31 11:40:13 +0000 |
commit | c9f161510200e1eae983102b6815c7eb8b4d18e4 (patch) | |
tree | fc0d860b79e5674216abfc9d60131b289b773d00 | |
parent | 9cbd2d979c5e7095530a6fc290615847d31b549d (diff) | |
download | gcc-c9f161510200e1eae983102b6815c7eb8b4d18e4.zip gcc-c9f161510200e1eae983102b6815c7eb8b4d18e4.tar.gz gcc-c9f161510200e1eae983102b6815c7eb8b4d18e4.tar.bz2 |
Fix typo in a comment in cpuid.h (PR target/79155).
2017-05-31 Martin Liska <mliska@suse.cz>
PR target/79155
* config/i386/cpuid.h: Fix typo in a comment in cpuid.h.
From-SVN: r248729
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/i386/cpuid.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4901b38..4cca996 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2017-05-31 Martin Liska <mliska@suse.cz> + + PR target/79155 + * config/i386/cpuid.h: Fix typo in a comment in cpuid.h. + 2017-05-31 Bin Cheng <bin.cheng@arm.com> * tree-vect-loop-manip.c (create_intersect_range_checks_index) diff --git a/gcc/config/i386/cpuid.h b/gcc/config/i386/cpuid.h index f915d2d..b3b0f91 100644 --- a/gcc/config/i386/cpuid.h +++ b/gcc/config/i386/cpuid.h @@ -179,7 +179,7 @@ /* Return highest supported input value for cpuid instruction. ext can - be either 0x0 or 0x8000000 to return highest supported value for + be either 0x0 or 0x80000000 to return highest supported value for basic or extended cpuid information. Function returns 0 if cpuid is not supported or whatever cpuid returns in eax register. If sig pointer is non-null, then first four bytes of the signature |