search for: ldpv_default

Displaying 2 results from an estimated 2 matches for "ldpv_default".

2016 Apr 20
2
Dead (or untested?) code in the gold plugin
...m_file_hook(const ld_plugin_input_file *file, Res.IsLinkonceOdr &= GV->hasLinkOnceLinkage(); Res.Visibility = getMinVisibility(Res.Visibility, GV->getVisibility()); switch (GV->getVisibility()) { - case GlobalValue::DefaultVisibility: - sym.visibility = LDPV_DEFAULT; - break; case GlobalValue::HiddenVisibility: sym.visibility = LDPV_HIDDEN; break; - case GlobalValue::ProtectedVisibility: - sym.visibility = LDPV_PROTECTED; - break; } } all the tests still pass. Is it just dead, or untested? Thanks...
2016 Oct 04
2
(Thin)LTO llvm build
GCC LTO works ok for the test case with both bfd and gold linker. David On Tue, Oct 4, 2016 at 6:58 AM, Teresa Johnson <tejohnson at google.com> wrote: > > > On Mon, Oct 3, 2016 at 6:15 PM, Teresa Johnson <tejohnson at google.com> > wrote: > >> >> >> On Mon, Oct 3, 2016 at 5:24 PM, Xinliang David Li <xinliangli at gmail.com> >> wrote: