* config/tc-v850.c (CHECK_): Remove token pasting operator.
This commit is contained in:
parent
7c3e3b337e
commit
ec266e19eb
2 changed files with 7 additions and 2 deletions
|
@ -1,9 +1,14 @@
|
||||||
|
2002-10-14 Momchil Velikov <velco@fadata.bg>
|
||||||
|
|
||||||
|
* config/tc-v850.c (CHECK_): Remove token pasting operator.
|
||||||
|
|
||||||
2002-10-14 Richard Sandiford <rsandifo@redhat.com>
|
2002-10-14 Richard Sandiford <rsandifo@redhat.com>
|
||||||
|
|
||||||
* configure.in (mips64vr-elf, mips64vrel-elf): New config.
|
* configure.in (mips64vr-elf, mips64vrel-elf): New config.
|
||||||
* configure: Regenerate.
|
* configure: Regenerate.
|
||||||
|
|
||||||
2002-10-13 Eric Christopher <echristo@redhat.com>, Alexandre Oliva <aoliva@redhat.com>
|
2002-10-13 Eric Christopher <echristo@redhat.com>
|
||||||
|
Alexandre Oliva <aoliva@redhat.com>
|
||||||
|
|
||||||
* config/tc-mips.c (s_gpdword): New function.
|
* config/tc-mips.c (s_gpdword): New function.
|
||||||
(mips_pseudo_table): Add .gpdword.
|
(mips_pseudo_table): Add .gpdword.
|
||||||
|
|
|
@ -1498,7 +1498,7 @@ v850_reloc_prefix (operand)
|
||||||
}
|
}
|
||||||
|
|
||||||
#define CHECK_(name, reloc) \
|
#define CHECK_(name, reloc) \
|
||||||
if (strncmp (input_line_pointer, name##"(", strlen (name) + 1) == 0) \
|
if (strncmp (input_line_pointer, name "(", strlen (name) + 1) == 0) \
|
||||||
{ \
|
{ \
|
||||||
input_line_pointer += strlen (name); \
|
input_line_pointer += strlen (name); \
|
||||||
return reloc; \
|
return reloc; \
|
||||||
|
|
Loading…
Reference in a new issue