mirror of
https://github.com/golang/go
synced 2024-11-22 21:20:03 -07:00
silence gcc warnings
R=ken OCL=18348 CL=18348
This commit is contained in:
parent
6524b82fed
commit
6b05518553
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user