1
0
mirror of https://github.com/golang/go synced 2024-11-23 00:30:07 -07:00

silence gcc warnings

R=ken
OCL=18348
CL=18348
This commit is contained in:
Russ Cox 2008-11-03 13:09:30 -08:00
parent 6524b82fed
commit 6b05518553

View File

@ -1492,8 +1492,7 @@ lookdot(Node *n, Type *t)
void
walkdot(Node *n)
{
Type *t, *f;
int d;
Type *t;
if(n->left == N || n->right == N)
return;
@ -1722,7 +1721,7 @@ ascompatte(int op, Type **nl, Node **nr, int fp)
loop:
if(l != T && isddd(l->type)) {
if(r != T && isddd(r->type)) {
if(r != N && isddd(r->type)) {
goto more;
}