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:
parent
dafc8f50f2
commit
9b798ac5b8
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user