From: Alan Modra Date: Mon, 14 Oct 2002 11:28:57 +0000 (+0000) Subject: * config/tc-v850.c (CHECK_): Remove token pasting operator. X-Git-Tag: jimb-dwarf-compression-021023-branchpoint~108 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ec266e19eb45a1f1a936134345ae64655d0de5b4;p=external%2Fbinutils.git * config/tc-v850.c (CHECK_): Remove token pasting operator. --- diff --git a/gas/ChangeLog b/gas/ChangeLog index 0640fd0..d0d9a56 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,9 +1,14 @@ +2002-10-14 Momchil Velikov + + * config/tc-v850.c (CHECK_): Remove token pasting operator. + 2002-10-14 Richard Sandiford * configure.in (mips64vr-elf, mips64vrel-elf): New config. * configure: Regenerate. -2002-10-13 Eric Christopher , Alexandre Oliva +2002-10-13 Eric Christopher + Alexandre Oliva * config/tc-mips.c (s_gpdword): New function. (mips_pseudo_table): Add .gpdword. diff --git a/gas/config/tc-v850.c b/gas/config/tc-v850.c index a3aaee8..04034f7 100644 --- a/gas/config/tc-v850.c +++ b/gas/config/tc-v850.c @@ -1498,7 +1498,7 @@ v850_reloc_prefix (operand) } #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); \ return reloc; \