From 8d68dd6975d279fc2ab3bcc2a28907f070f9b729 Mon Sep 17 00:00:00 2001 From: Philippe De Muyter Date: Tue, 30 Nov 1999 09:36:13 +0100 Subject: [PATCH] cppinit.c (CAT): The argument list of this macro may not contain spaces ! * cppinit.c (CAT): The argument list of this macro may not contain spaces ! From-SVN: r30718 --- gcc/ChangeLog | 5 +++++ gcc/cppinit.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index a0376e069f1..dff51d3d83e 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Tue Nov 30 01:34:47 1999 Philippe De Muyter + + * cppinit.c (CAT): The argument list of this macro may not contain + spaces ! + 1999-11-29 David S. Miller Move quantity tables and register equivalence chains into diff --git a/gcc/cppinit.c b/gcc/cppinit.c index 15c7938831e..4343b23ab83 100644 --- a/gcc/cppinit.c +++ b/gcc/cppinit.c @@ -223,7 +223,7 @@ unsigned char id[256] = { #define END }; #else #define TABLE(id) unsigned char id[256] = { 0 }; \ -static void CAT(init_, id) PARAMS ((void)) { \ +static void CAT(init_,id) PARAMS ((void)) { \ unsigned char *x = id; #define s(p, v) x[p] = v; #define END }