From: Ian Lance Taylor Date: Mon, 14 Oct 2019 23:12:33 +0000 (+0000) Subject: compiler: revise exportdata fix for processing constant types X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0a0582d75efb699d9adacc7a89831e90c4bd6c1d;p=gcc.git compiler: revise exportdata fix for processing constant types This patch is an addendum to the fix for issue 34577, which was not sufficiently general. During export data processing, when looking at the types of constants mentioned in inlinable function bodies, include both locally defined constants and constant imported from other packages. Testcase for this bug is in CL 201017. Fixes golang/go#34852. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/201018 From-SVN: r276976 --- diff --git a/gcc/go/gofrontend/MERGE b/gcc/go/gofrontend/MERGE index 651f7473714..c9efcba0113 100644 --- a/gcc/go/gofrontend/MERGE +++ b/gcc/go/gofrontend/MERGE @@ -1,4 +1,4 @@ -f71238c0112311e4525a1f4b76d2f80be87d2e62 +1e2d98b27701744cf0ec57b19d7fc8f594184b9a 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/export.cc b/gcc/go/gofrontend/export.cc index 5aaa207ff5f..b27d2fa11e4 100644 --- a/gcc/go/gofrontend/export.cc +++ b/gcc/go/gofrontend/export.cc @@ -250,7 +250,7 @@ Collect_export_references::expression(Expression** pexpr) } const Named_object* nco = expr->named_constant(); - if (nco != 0 && nco->package() == NULL) + if (nco != 0) { const Named_constant *nc = nco->const_value(); Type::traverse(nc->type(), this);