gc: appease bison version running on FreeBSD builder

R=ken2
CC=golang-dev
https://golang.org/cl/2141042
This commit is contained in:
Russ Cox 2010-09-02 14:31:39 -04:00
parent a37e3697da
commit 1cb951d994

View file

@ -21,16 +21,7 @@
#include <stdio.h> /* if we don't, bison will, and go.h re-#defines getc */
#include "go.h"
static void
fixlbrace(int lbr)
{
// If the opening brace was an LBODY,
// set up for another one now that we're done.
// See comment in lex.c about loophack.
if(lbr == LBODY)
loophack = 1;
}
static void fixlbrace(int);
%}
%union {
Node* node;
@ -1938,3 +1929,16 @@ hidden_interfacedcl_list:
{
$$ = list($1, $3);
}
%%
static void
fixlbrace(int lbr)
{
// If the opening brace was an LBODY,
// set up for another one now that we're done.
// See comment in lex.c about loophack.
if(lbr == LBODY)
loophack = 1;
}