Commit f81f5a9d by Mark Mitchell Committed by Mark Mitchell

cpplib.c (cpp_get_token): Call CPP_BUMP_LINE after reading a carriage return after a macro name.

	* cpplib.c (cpp_get_token): Call CPP_BUMP_LINE after reading a
	carriage return after a macro name.

From-SVN: r31840
parent f39b788a
2000-02-07 Mark Mitchell <mark@codesourcery.com>
* cpplib.c (cpp_get_token): Call CPP_BUMP_LINE after reading a
carriage return after a macro name.
2000-02-07 Fred Fish <fnf@be.com> 2000-02-07 Fred Fish <fnf@be.com>
* i386/beos-elf.h: (ASM_IDENTIFY_GCC): Define to nothing * i386/beos-elf.h: (ASM_IDENTIFY_GCC): Define to nothing
......
...@@ -2624,6 +2624,7 @@ cpp_get_token (pfile) ...@@ -2624,6 +2624,7 @@ cpp_get_token (pfile)
{ {
if (c != '\n') if (c != '\n')
break; break;
CPP_BUMP_LINE (pfile);
FORWARD (1); FORWARD (1);
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment