public inbox for binutils@sourceware.org
 help / color / mirror / Atom feed
From: Peter Jakubek <pjak@snafu.de>
To: binutils@sourceware.cygnus.com
Subject: [patch]: Fix mul precedence in src/gas/expr.c (mri mode)
Date: Wed, 28 Jun 2000 02:58:00 -0000	[thread overview]
Message-ID: <3959CB3F.B2E@snafu.de> (raw)

Hi!

In expr.c the precedence of mul is currently the same as
for add.
A patch to fix this problem follows.

PS: Is this the right way and place to submit a patch?
(there are quite a few more patches I would like to send...)

Thanks,

Peter Jakubek
LaserAnimation Sollinger GmbH
pjak@snafu.de


Index: src/gas/ChangeLog
===================================================================
RCS file: /cvs/src/src/gas/ChangeLog,v
retrieving revision 1.427
diff -U0 -r1.427 ChangeLog
--- ChangeLog	2000/06/27 18:21:39	1.427
+++ ChangeLog	2000/06/28 09:44:15
@@ -0,0 +1,5 @@
+2000-06-28  Peter Jakubek  <pjak@snafu.de>
+
+	* expr.c: (MRI_MUL_PRECEDENCE): fix precedence
+	for mri mode. Mul has higher precedence than add.
+
Index: src/gas/expr.c
===================================================================
RCS file: /cvs/src/src/gas/expr.c,v
retrieving revision 1.19
diff -U3 -r1.19 expr.c
--- expr.c	2000/06/23 10:51:28	1.19
+++ expr.c	2000/06/28 09:43:40
@@ -1535,7 +1535,7 @@
    that as well.  */
 
 #define STANDARD_MUL_PRECEDENCE (7)
-#define MRI_MUL_PRECEDENCE (5)
+#define MRI_MUL_PRECEDENCE (6)
 
 void
 expr_set_precedence ()

--

             reply	other threads:[~2000-06-28  2:58 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2000-06-28  2:58 Peter Jakubek [this message]
2000-06-29 16:32 Nick Clifton

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3959CB3F.B2E@snafu.de \
    --to=pjak@snafu.de \
    --cc=binutils@sourceware.cygnus.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).