Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [PATCH RFA] two MIPS opcodes patches to pull up to branch?
@ 2002-03-16 12:16 cgd
  2002-03-16 17:46 ` Andrew Cagney
  0 siblings, 1 reply; 5+ messages in thread
From: cgd @ 2002-03-16 12:16 UTC (permalink / raw)
  To: gdb-patches

I'd like to get the following patches approved for the 5.2 branch:

http://sources.redhat.com/ml/binutils/2002-03/msg00136.html

[opcodes/ChangeLog]
2002-03-06  Chris Demetriou  <cgd@broadcom.com>

        * mips-opc.c (mips_builtin_opcodes): Mark "pref" as being
        present on I4.

        * mips-opc.c (mips_builtin_opcodes): Add "movn.ps" and
          "movz.ps".

and

http://sources.redhat.com/ml/binutils/2002-03/msg00202.html

[ opcodes/ChangeLog ]
2002-03-11  Chris Demetriou  <cgd@broadcom.com>

        * mips-dis.c (is_newabi): Fix ABI decoding.


Both have been approved and applied to mainline binutils, and they
both seem to apply to the gdb 5.2 branch.


chris


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

* Re: [PATCH RFA] two MIPS opcodes patches to pull up to branch?
  2002-03-16 12:16 [PATCH RFA] two MIPS opcodes patches to pull up to branch? cgd
@ 2002-03-16 17:46 ` Andrew Cagney
       [not found]   ` <mailpost.1016329780.11992@news-sj1-1>
  0 siblings, 1 reply; 5+ messages in thread
From: Andrew Cagney @ 2002-03-16 17:46 UTC (permalink / raw)
  To: cgd; +Cc: gdb-patches

Yep, fine.  What's the worst that could happen, the mips breaks? :-)

Andrew

> I'd like to get the following patches approved for the 5.2 branch:
> 
> http://sources.redhat.com/ml/binutils/2002-03/msg00136.html
> 
> [opcodes/ChangeLog]
> 2002-03-06  Chris Demetriou  <cgd@broadcom.com>
> 
> * mips-opc.c (mips_builtin_opcodes): Mark "pref" as being
>         present on I4.
> 
>         * mips-opc.c (mips_builtin_opcodes): Add "movn.ps" and
>           "movz.ps".
> 
> and
> 
> http://sources.redhat.com/ml/binutils/2002-03/msg00202.html
> 
> [ opcodes/ChangeLog ]
> 2002-03-11  Chris Demetriou  <cgd@broadcom.com>
> 
> * mips-dis.c (is_newabi): Fix ABI decoding.
> 
> 
> Both have been approved and applied to mainline binutils, and they
> both seem to apply to the gdb 5.2 branch.


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

* Re: [PATCH RFA] two MIPS opcodes patches to pull up to branch?
       [not found]   ` <mailpost.1016329780.11992@news-sj1-1>
@ 2002-03-24 22:34     ` cgd
  2002-03-25  3:06       ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: cgd @ 2002-03-24 22:34 UTC (permalink / raw)
  To: ac131313; +Cc: gdb-patches

At Sun, 17 Mar 2002 01:49:40 +0000 (UTC), "Andrew Cagney" wrote:
> Yep, fine.  What's the worst that could happen, the mips breaks? :-)

What's the format to be used for branch ChangeLogs?

change log as originally committed (i.e., using original commit date)?
new entry at top of file or sorted in by original date?  etc.

I didn't see anything about this in your recently posted branch
policy...


thanks,

chris


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

* Re: [PATCH RFA] two MIPS opcodes patches to pull up to branch?
  2002-03-24 22:34     ` cgd
@ 2002-03-25  3:06       ` Eli Zaretskii
  2002-03-25  6:15         ` Andrew Cagney
  0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2002-03-25  3:06 UTC (permalink / raw)
  To: cgd; +Cc: ac131313, gdb-patches


On 24 Mar 2002 cgd@broadcom.com wrote:

> What's the format to be used for branch ChangeLogs?
> 
> change log as originally committed (i.e., using original commit date)?
> new entry at top of file or sorted in by original date?  etc.

For changes on the branch, you are supposed to modify the ChangeLog
files from the branch only.  The date should be the date of the commit 
(otherwise, the logs are not in chronological order, which makes it hard 
to track change history).

In other words, you should do the same as you do on the trunk.  That's 
why there's no mention of anything special in the branch policy text.


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

* Re: [PATCH RFA] two MIPS opcodes patches to pull up to branch?
  2002-03-25  3:06       ` Eli Zaretskii
@ 2002-03-25  6:15         ` Andrew Cagney
  0 siblings, 0 replies; 5+ messages in thread
From: Andrew Cagney @ 2002-03-25  6:15 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: cgd, gdb-patches

> On 24 Mar 2002 cgd@broadcom.com wrote:
> 
> 
>> What's the format to be used for branch ChangeLogs?
>> 
>> change log as originally committed (i.e., using original commit date)?
>> new entry at top of file or sorted in by original date?  etc.
> 
> 
> For changes on the branch, you are supposed to modify the ChangeLog
> files from the branch only.  The date should be the date of the commit 
> (otherwise, the logs are not in chronological order, which makes it hard 
> to track change history).

Yep

> In other words, you should do the same as you do on the trunk.  That's 
> why there's no mention of anything special in the branch policy text.

If the dates will differ, it doesn't hurt to add a ``From <date> <who>'' 
or ``Import <date> <who>'' or ...

enjoy,
Andrew




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

end of thread, other threads:[~2002-03-25 14:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-03-16 12:16 [PATCH RFA] two MIPS opcodes patches to pull up to branch? cgd
2002-03-16 17:46 ` Andrew Cagney
     [not found]   ` <mailpost.1016329780.11992@news-sj1-1>
2002-03-24 22:34     ` cgd
2002-03-25  3:06       ` Eli Zaretskii
2002-03-25  6:15         ` Andrew Cagney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox