diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-01-04 22:18:20 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-01-04 22:18:20 +0000 |
commit | bdc4349d7eece0bc3aaf864ee3b32fe8cc3637a3 (patch) | |
tree | 251dd7336921b162feba9d89d792092af292fe1a /gcc/go/gofrontend/parse.h | |
parent | 82701bd204992a7349168cddc8b35884da478be0 (diff) | |
download | gcc-bdc4349d7eece0bc3aaf864ee3b32fe8cc3637a3.zip gcc-bdc4349d7eece0bc3aaf864ee3b32fe8cc3637a3.tar.gz gcc-bdc4349d7eece0bc3aaf864ee3b32fe8cc3637a3.tar.bz2 |
Don't look outside of function literal for break or continue label.
From-SVN: r168486
Diffstat (limited to 'gcc/go/gofrontend/parse.h')
-rw-r--r-- | gcc/go/gofrontend/parse.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/go/gofrontend/parse.h b/gcc/go/gofrontend/parse.h index 65f1586..6f2ac64 100644 --- a/gcc/go/gofrontend/parse.h +++ b/gcc/go/gofrontend/parse.h @@ -294,9 +294,9 @@ class Parse // The code we are generating. Gogo* gogo_; // A stack of statements for which break may be used. - Bc_stack break_stack_; + Bc_stack* break_stack_; // A stack of statements for which continue may be used. - Bc_stack continue_stack_; + Bc_stack* continue_stack_; // The current iota value. int iota_; // References from the local function to variables defined in |