public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH 1/2] doc: Correct __builtin_arm_tinsr prototype documentation
@ 2012-04-04 18:35 Matt Turner
  2012-04-04 18:35 ` [PATCH] doc: Fix typo: mno-lsc -> mno-llsc Matt Turner
  2012-05-28 21:58 ` [PATCH 1/2] doc: Correct __builtin_arm_tinsr prototype documentation Matt Turner
  0 siblings, 2 replies; 4+ messages in thread
From: Matt Turner @ 2012-04-04 18:35 UTC (permalink / raw)
  To: gcc-patches; +Cc: Matt Turner

2012-04-04  Matt Turner  <mattst88@gmail.com>

	gcc/
	* doc/extend.texi (__builtin_arm_tinsrb): Add missing second
	parameter.
	(__builtin_arm_tinsrh): Likewise.
	(__builtin_arm_tinsrw): Likewise.
---
This patch and 2/2 are tie-ons to
http://gcc.gnu.org/ml/gcc-patches/2012-02/msg01269.html

Still waiting on copyright assignment, but I think this doc patch
is trivial enough to be committed without it.

 gcc/doc/extend.texi |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
index bb43825..966175d 100644
--- a/gcc/doc/extend.texi
+++ b/gcc/doc/extend.texi
@@ -8676,9 +8676,9 @@ int __builtin_arm_textrmsw (v2si, int)
 int __builtin_arm_textrmub (v8qi, int)
 int __builtin_arm_textrmuh (v4hi, int)
 int __builtin_arm_textrmuw (v2si, int)
-v8qi __builtin_arm_tinsrb (v8qi, int)
-v4hi __builtin_arm_tinsrh (v4hi, int)
-v2si __builtin_arm_tinsrw (v2si, int)
+v8qi __builtin_arm_tinsrb (v8qi, int, int)
+v4hi __builtin_arm_tinsrh (v4hi, int, int)
+v2si __builtin_arm_tinsrw (v2si, int, int)
 long long __builtin_arm_tmia (long long, int, int)
 long long __builtin_arm_tmiabb (long long, int, int)
 long long __builtin_arm_tmiabt (long long, int, int)
-- 
1.7.3.4

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] doc: Fix typo: mno-lsc -> mno-llsc
  2012-04-04 18:35 [PATCH 1/2] doc: Correct __builtin_arm_tinsr prototype documentation Matt Turner
@ 2012-04-04 18:35 ` Matt Turner
  2012-04-06  8:40   ` Richard Sandiford
  2012-05-28 21:58 ` [PATCH 1/2] doc: Correct __builtin_arm_tinsr prototype documentation Matt Turner
  1 sibling, 1 reply; 4+ messages in thread
From: Matt Turner @ 2012-04-04 18:35 UTC (permalink / raw)
  To: gcc-patches; +Cc: Matt Turner

2012-04-04  Matt Turner  <mattst88@gmail.com>

	gcc/
	* doc/install.texi: Correct typo "-mno-lsc" -> "-mno-llsc".
---
Still waiting on copyright assignment, but I think this doc patch
is trivial enough to be committed without it.

 gcc/doc/install.texi |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi
index 41dbf44..6da6c09 100644
--- a/gcc/doc/install.texi
+++ b/gcc/doc/install.texi
@@ -1238,7 +1238,7 @@ Division by zero checks use the break instruction.
 
 @item --with-llsc
 On MIPS targets, make @option{-mllsc} the default when no
-@option{-mno-lsc} option is passed.  This is the default for
+@option{-mno-llsc} option is passed.  This is the default for
 Linux-based targets, as the kernel will emulate them if the ISA does
 not provide them.
 
-- 
1.7.3.4

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] doc: Fix typo: mno-lsc -> mno-llsc
  2012-04-04 18:35 ` [PATCH] doc: Fix typo: mno-lsc -> mno-llsc Matt Turner
@ 2012-04-06  8:40   ` Richard Sandiford
  0 siblings, 0 replies; 4+ messages in thread
From: Richard Sandiford @ 2012-04-06  8:40 UTC (permalink / raw)
  To: Matt Turner; +Cc: gcc-patches

Matt Turner <mattst88@gmail.com> writes:
> 2012-04-04  Matt Turner  <mattst88@gmail.com>
>
> 	gcc/
> 	* doc/install.texi: Correct typo "-mno-lsc" -> "-mno-llsc".

Thanks, applied to trunk, 4.7, 4.6 and 4.5.

Richard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/2] doc: Correct __builtin_arm_tinsr prototype documentation
  2012-04-04 18:35 [PATCH 1/2] doc: Correct __builtin_arm_tinsr prototype documentation Matt Turner
  2012-04-04 18:35 ` [PATCH] doc: Fix typo: mno-lsc -> mno-llsc Matt Turner
@ 2012-05-28 21:58 ` Matt Turner
  1 sibling, 0 replies; 4+ messages in thread
From: Matt Turner @ 2012-05-28 21:58 UTC (permalink / raw)
  To: gcc-patches

On Wed, Apr 4, 2012 at 2:34 PM, Matt Turner <mattst88@gmail.com> wrote:
> 2012-04-04  Matt Turner  <mattst88@gmail.com>
>
>        gcc/
>        * doc/extend.texi (__builtin_arm_tinsrb): Add missing second
>        parameter.
>        (__builtin_arm_tinsrh): Likewise.
>        (__builtin_arm_tinsrw): Likewise.
> ---
> This patch and 2/2 are tie-ons to
> http://gcc.gnu.org/ml/gcc-patches/2012-02/msg01269.html
>
> Still waiting on copyright assignment, but I think this doc patch
> is trivial enough to be committed without it.
>
>  gcc/doc/extend.texi |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/gcc/doc/extend.texi b/gcc/doc/extend.texi
> index bb43825..966175d 100644
> --- a/gcc/doc/extend.texi
> +++ b/gcc/doc/extend.texi
> @@ -8676,9 +8676,9 @@ int __builtin_arm_textrmsw (v2si, int)
>  int __builtin_arm_textrmub (v8qi, int)
>  int __builtin_arm_textrmuh (v4hi, int)
>  int __builtin_arm_textrmuw (v2si, int)
> -v8qi __builtin_arm_tinsrb (v8qi, int)
> -v4hi __builtin_arm_tinsrh (v4hi, int)
> -v2si __builtin_arm_tinsrw (v2si, int)
> +v8qi __builtin_arm_tinsrb (v8qi, int, int)
> +v4hi __builtin_arm_tinsrh (v4hi, int, int)
> +v2si __builtin_arm_tinsrw (v2si, int, int)
>  long long __builtin_arm_tmia (long long, int, int)
>  long long __builtin_arm_tmiabb (long long, int, int)
>  long long __builtin_arm_tmiabt (long long, int, int)
> --
> 1.7.3.4
>

Copyright assignment is sorted. Please commit. :)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-05-28 21:58 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-04 18:35 [PATCH 1/2] doc: Correct __builtin_arm_tinsr prototype documentation Matt Turner
2012-04-04 18:35 ` [PATCH] doc: Fix typo: mno-lsc -> mno-llsc Matt Turner
2012-04-06  8:40   ` Richard Sandiford
2012-05-28 21:58 ` [PATCH 1/2] doc: Correct __builtin_arm_tinsr prototype documentation Matt Turner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).