mirror of
https://github.com/golang/go
synced 2024-11-26 17:56:55 -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
|
void
|
||||||
walkdot(Node *n)
|
walkdot(Node *n)
|
||||||
{
|
{
|
||||||
Type *t, *f;
|
Type *t;
|
||||||
int d;
|
|
||||||
|
|
||||||
if(n->left == N || n->right == N)
|
if(n->left == N || n->right == N)
|
||||||
return;
|
return;
|
||||||
@ -1722,7 +1721,7 @@ ascompatte(int op, Type **nl, Node **nr, int fp)
|
|||||||
|
|
||||||
loop:
|
loop:
|
||||||
if(l != T && isddd(l->type)) {
|
if(l != T && isddd(l->type)) {
|
||||||
if(r != T && isddd(r->type)) {
|
if(r != N && isddd(r->type)) {
|
||||||
goto more;
|
goto more;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user