aboutsummaryrefslogtreecommitdiff
path: root/gcc/go/gofrontend/parse.cc
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@gcc.gnu.org>2011-03-28 22:58:49 +0000
committerIan Lance Taylor <ian@gcc.gnu.org>2011-03-28 22:58:49 +0000
commit0753192b5bcb617b5edf5dfe53f34b40ec58c697 (patch)
tree1534887dfb7d770fff02aec188d4b5033255abd4 /gcc/go/gofrontend/parse.cc
parent117614a257dddb5398a1d7d15bcde71706f25f1e (diff)
downloadgcc-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.cc6
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);
}