]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix typo
authorNick Clifton <nickc@redhat.com>
Sun, 22 May 2005 05:55:15 +0000 (05:55 +0000)
committerNick Clifton <nickc@redhat.com>
Sun, 22 May 2005 05:55:15 +0000 (05:55 +0000)
gas/ChangeLog
gas/config/tc-v850.c

index f25b6a8a364f38985ef329bba92e52928c0e314c..dff786f2c807a8b79c131be1dde7517242b05de5 100644 (file)
@@ -1,3 +1,8 @@
+2005-05-22  Nick Clifton  <nickc@redhat.com>
+
+       * config/tc-v850.c (md_apply_fix3): Pass the address of the
+       message buffer when invoking the insert function.
+
 2005-05-21  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
 
        * config/tc-hppa.c (pa_ip): Promote architecture from PA 1.0 to 1.1
index aca61e959aadd88ddf80c256ef07c05112b0ad27..a0293616d476b57470e37007f5f0c71195622bc7 100644 (file)
@@ -2341,7 +2341,7 @@ md_apply_fix3 (fixS *fixP, valueT *valueP, segT seg ATTRIBUTE_UNUSED)
 
          /* Use the operand's insertion procedure, if present, in order to
             make sure that the value is correctly stored in the insn.  */
-         insn = operand->insert (insn, (offsetT) value, message);
+         insn = operand->insert (insn, (offsetT) value, message);
          /* Ignore message even if it is set.  */
 
          bfd_putl32 ((bfd_vma) insn, (unsigned char *) where);