diff options
Diffstat (limited to 'bfd/sparclynx.c')
-rw-r--r-- | bfd/sparclynx.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bfd/sparclynx.c b/bfd/sparclynx.c index e59b57c..4da604f 100644 --- a/bfd/sparclynx.c +++ b/bfd/sparclynx.c @@ -29,7 +29,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #endif -#define MY(OP) CAT (sparclynx_aout_,OP) +/* Do not "beautify" the CONCAT* macro args. Traditional C will not + remove whitespace added here, and thus will fail to concatenate + the tokens. */ +#define MY(OP) CONCAT2 (sparclynx_aout_,OP) #define TARGETNAME "a.out-sparc-lynx" #include "bfd.h" |