godump.c (go_define): Ignore macros whose definitions include two adjacent operands.

* godump.c (go_define): Ignore macros whose definitions include
	two adjacent operands.

From-SVN: r169385
This commit is contained in:
Ian Lance Taylor 2011-01-29 02:32:28 +00:00 committed by Ian Lance Taylor
parent dafc8f50f2
commit 9b798ac5b8
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2011-01-28 Ian Lance Taylor <iant@google.com>
* godump.c (go_define): Ignore macros whose definitions include
two adjacent operands.
2011-01-28 Jakub Jelinek <jakub@redhat.com>
PR target/42894

View File

@ -142,6 +142,9 @@ go_define (unsigned int lineno, const char *buffer)
const char *start;
char *n;
if (saw_operand)
goto unknown;
start = p;
while (ISALNUM (*p) || *p == '_')
++p;