* symbols.c (fb_label_name): Fix silly thinko in last change.

This commit is contained in:
Alan Modra 2005-03-02 00:11:30 +00:00
parent 76f0e58516
commit 71ba24a1eb
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2005-03-02 Alan Modra <amodra@bigpond.net.au>
* symbols.c (fb_label_name): Fix silly thinko in last change.
2005-03-02 Alan Modra <amodra@bigpond.net.au>
* expr.c (integer_constant): Remove TARGET_WORD_SIZE hack.

View File

@ -1561,13 +1561,11 @@ fb_label_name (long n, /* We just saw "n:", "nf" or "nb" : n a number. */
char symbol_name_temporary[20]; /* Build up a number, BACKWARDS. */
know (n >= 0);
know (
#ifdef TC_MMIX
(unsigned long) augend <= 2 /* See mmix_fb_label. */
know ((unsigned long) augend <= 2 /* See mmix_fb_label. */);
#else
(unsigned long) augend <= 1
know ((unsigned long) augend <= 1);
#endif
);
p = symbol_name_build;
#ifdef LOCAL_LABEL_PREFIX
*p++ = LOCAL_LABEL_PREFIX;