This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: CPP macro expansion


You're right.  Probably _I_ misunderstood the questions.  Multiline
macros will get condensed to a single line.  The rest of the source
code, however, will be "normal".

Lyle

-----Original Message-----
> gcc -E file.c

Maybe I misunderstood the question. I thought the problem was to get
from

#define F {      \
            bla; \
          }
F

to
{      
   bla;
}

whereas gcc -E produces

{ bla; }

-- 
	Falk


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]