From 45d18c809e5db00460a76d1e7e01ee26a543e5de Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Sun, 22 May 2005 05:55:15 +0000 Subject: [PATCH] Fix typo --- gas/ChangeLog | 5 +++++ gas/config/tc-v850.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index f25b6a8a364..dff786f2c80 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2005-05-22 Nick Clifton + + * 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 * config/tc-hppa.c (pa_ip): Promote architecture from PA 1.0 to 1.1 diff --git a/gas/config/tc-v850.c b/gas/config/tc-v850.c index aca61e959aa..a0293616d47 100644 --- a/gas/config/tc-v850.c +++ b/gas/config/tc-v850.c @@ -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); -- 2.39.5