diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-28 22:58:49 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-03-28 22:58:49 +0000 |
commit | 0753192b5bcb617b5edf5dfe53f34b40ec58c697 (patch) | |
tree | 1534887dfb7d770fff02aec188d4b5033255abd4 /gcc/go/gofrontend/parse.cc | |
parent | 117614a257dddb5398a1d7d15bcde71706f25f1e (diff) | |
download | gcc-0753192b5bcb617b5edf5dfe53f34b40ec58c697.zip gcc-0753192b5bcb617b5edf5dfe53f34b40ec58c697.tar.gz gcc-0753192b5bcb617b5edf5dfe53f34b40ec58c697.tar.bz2 |
Better error message for missing condition in if statement.
From-SVN: r171638
Diffstat (limited to 'gcc/go/gofrontend/parse.cc')
-rw-r--r-- | gcc/go/gofrontend/parse.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gcc/go/gofrontend/parse.cc b/gcc/go/gofrontend/parse.cc index 1120c1e..c7cd108 100644 --- a/gcc/go/gofrontend/parse.cc +++ b/gcc/go/gofrontend/parse.cc @@ -3779,6 +3779,12 @@ Parse::if_stat() if (!this->expression_may_start_here()) cond = Expression::make_error(this->location()); } + if (cond == NULL && this->peek_token()->is_op(OPERATOR_LCURLY)) + { + error_at(this->location(), + "missing condition in if statement"); + cond = Expression::make_error(this->location()); + } if (cond == NULL) cond = this->expression(PRECEDENCE_NORMAL, false, false, NULL); } |