deleted a warning
This commit is contained in:
parent
34bcf4786b
commit
fec5feef77
1 changed files with 2 additions and 1 deletions
|
@ -209,9 +209,10 @@ redefine(new, old)
|
||||||
if (!ISCOMMON(old)) {
|
if (!ISCOMMON(old)) {
|
||||||
if (!ISCOMMON(new))
|
if (!ISCOMMON(new))
|
||||||
error("%s: multiply defined", new->on_mptr);
|
error("%s: multiply defined", new->on_mptr);
|
||||||
|
/*
|
||||||
else if ((new->on_type & S_TYP) != (old->on_type & S_TYP))
|
else if ((new->on_type & S_TYP) != (old->on_type & S_TYP))
|
||||||
warning("%s: sections differ", new->on_mptr);
|
warning("%s: sections differ", new->on_mptr);
|
||||||
|
*/
|
||||||
} else {
|
} else {
|
||||||
/* `Old' is common. */
|
/* `Old' is common. */
|
||||||
if (ISCOMMON(new)) {
|
if (ISCOMMON(new)) {
|
||||||
|
|
Loading…
Reference in a new issue