diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2015-07-20 16:47:24 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2015-07-20 16:47:24 +0000 |
commit | 57c7a33b979a475f38bb3c107016a06bf09f2ebf (patch) | |
tree | ba02d0bae313ce88f0ce8192375800ec55f424ef /gcc | |
parent | 824478c04c49adfe005b23ab33a25795ee4ccf84 (diff) | |
download | gcc-57c7a33b979a475f38bb3c107016a06bf09f2ebf.zip gcc-57c7a33b979a475f38bb3c107016a06bf09f2ebf.tar.gz gcc-57c7a33b979a475f38bb3c107016a06bf09f2ebf.tar.bz2 |
compiler: Remove unnecessary check for GCC-specific issue.
Reviewed-on: https://go-review.googlesource.com/11800
compiler: remove name of unused parameter to avoid warning
Reviewed-on: https://go-review.googlesource.com/12367
From-SVN: r226007
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/go/gofrontend/MERGE | 2 | ||||
-rw-r--r-- | gcc/go/gofrontend/expressions.cc | 13 |
2 files changed, 2 insertions, 13 deletions
diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index 9a5a2f9..1b1e3cd 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -2c985e4781691fea3eb4171de85265bfbc4e4997 +19ff97ed3eb07d902bc4b3f97b21c4b6df834ad2 The first line of this file holds the git revision number of the last merge done from the gofrontend repository. diff --git a/gcc/go/gofrontend/expressions.cc b/gcc/go/gofrontend/expressions.cc index 76b8328..2351129 100644 --- a/gcc/go/gofrontend/expressions.cc +++ b/gcc/go/gofrontend/expressions.cc @@ -133,7 +133,7 @@ Expression::determine_type_no_context() // assignment. Expression* -Expression::convert_for_assignment(Gogo* gogo, Type* lhs_type, +Expression::convert_for_assignment(Gogo*, Type* lhs_type, Expression* rhs, Location location) { Type* rhs_type = rhs->type(); @@ -177,17 +177,6 @@ Expression::convert_for_assignment(Gogo* gogo, Type* lhs_type, || (lhs_type->array_type() != NULL && rhs_type->array_type() != NULL)) { - // Avoid confusion from zero sized variables which may be - // represented as non-zero-sized. - // TODO(cmang): This check is for a GCC-specific issue, and should be - // removed from the frontend. FIXME. - int64_t lhs_size = - gogo->backend()->type_size(lhs_type->get_backend(gogo)); - int64_t rhs_size = - gogo->backend()->type_size(rhs_type->get_backend(gogo)); - if (rhs_size == 0 || lhs_size == 0) - return rhs; - // This conversion must be permitted by Go, or we wouldn't have // gotten here. return Expression::make_unsafe_cast(lhs_type, rhs, location); |