Skip to content

Commit

Permalink
A few more fixes for gcc.
Browse files Browse the repository at this point in the history
  • Loading branch information
ragge committed Oct 3, 2004
1 parent 674ff05 commit 0e6b72c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
3 changes: 3 additions & 0 deletions arch/i386/local2.c
Expand Up @@ -177,6 +177,7 @@ hopcode(int f, int o)
break;
default:
comperr("hopcode2: %d", o);
str = 0; /* XXX gcc */
}
printf("%s%c", str, f);
}
Expand Down Expand Up @@ -255,6 +256,8 @@ twollcomp(NODE *p)
cb2 = GT;
break;

default:
cb1 = cb2 = 0; /* XXX gcc */
}
if (p->n_op >= ULE)
cb1 += 4, cb2 += 4;
Expand Down
4 changes: 3 additions & 1 deletion arch/i386/order.c
Expand Up @@ -329,8 +329,10 @@ gencall(NODE *p, NODE *prev)
n->n_type = INCREF(n->n_type);
} else
comperr("gencall stasg");
} else
} else {
comperr("gencall bad op %d", prev->n_op);
n = 0; /* XXX gcc */
}

/* Deal with standard arguments */
gencall(p->n_left, p);
Expand Down
2 changes: 2 additions & 0 deletions config.h.in
@@ -1,3 +1,5 @@
/* config.h.in. Generated from configure.ac by autoheader. */

/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
systems. This function is required for `alloca.c' support on those systems.
*/
Expand Down

0 comments on commit 0e6b72c

Please sign in to comment.