]> Cypherpunks repositories - gostls13.git/commitdiff
silence gcc warning - initialize two variables
authorRuss Cox <rsc@golang.org>
Mon, 6 Oct 2008 20:52:23 +0000 (13:52 -0700)
committerRuss Cox <rsc@golang.org>
Mon, 6 Oct 2008 20:52:23 +0000 (13:52 -0700)
R=ken
OCL=16550
CL=16550

src/cmd/gc/const.c

index a22cbbc13079fc84e0446dbc51a47c83ad5557a5..c44a2a6b74ee53bd7f471df82dae646283def966 100644 (file)
@@ -143,6 +143,9 @@ evconst(Node *n)
        Mpint *xval;
        Mpflt *fval;
 
+       xval = nil;
+       fval = nil;
+
        nl = n->left;
        if(nl == N)
                return;