Commit 6b055185 authored by Russ Cox's avatar Russ Cox

silence gcc warnings

R=ken
OCL=18348
CL=18348
parent 6524b82f
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment