Fix gold build error at -O0.
authorCary Coutant <ccoutant@gmail.com>
Thu, 11 Jun 2015 20:19:38 +0000 (13:19 -0700)
committerCary Coutant <ccoutant@gmail.com>
Thu, 11 Jun 2015 20:21:11 +0000 (13:21 -0700)
commit5d7908e0880030628536a0266968a15922574735
tree164c158e8268ac8a66cfb08fec0edd64a26447f7
parentdd68f8fa8e2412c5c16380871d8ac5e40909aef6
Fix gold build error at -O0.

In aarch64.cc, Erratum_stub::STUB_ADDR_ALIGN and Reloc_stub::STUB_ADDR_ALIGN
are declared as static const int, and initialized in the class body. These
values are referenced from outside the class body, and with no optimization,
the references go unresolved.

gold/
* aarch64.cc (Erratum_stub::STUB_ADDR_ALIGN): Move initialization
outside class body.
(Reloc_stub::STUB_ADDR_ALIGN): Likewise.
gold/ChangeLog
gold/aarch64.cc
This page took 0.024622 seconds and 4 git commands to generate.