This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
problem with pragma in the cpp
- To: gcc-bugs at gcc dot gnu dot org
- Subject: problem with pragma in the cpp
- From: Herman ten Brugge <Haj dot Ten dot Brugge at net dot HCC dot nl>
- Date: Fri, 4 Aug 2000 20:36:48 +0100 (WEST)
Hello,
I found a problem with pragma's after the last change to cppmain.c. If I
preprocess the following c-code (example from malloc routine on c4x):
#pragma DATA_SECTION(_sys_memory, ".sysmem")
I get:
#pragma #pragma DATA_SECTION(_sys_memory, ".sysmem")
For some reason the pragma declaration is inserted another time?
Herman.