[lld] r285453 - Attempt to fix a buildbot.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Fri Oct 28 18:37:57 PDT 2016


I'm so sorry that I didn't notice it. Submitted r285489 to fix the issue.

On Fri, Oct 28, 2016 at 6:32 PM, Yung, Douglas <douglas.yung at sony.com>
wrote:

> Hi Rui,
>
> I don't know if you are aware of this or not, but the PS4 Windows bot
> still seems to be broken, and it looks like it was from the file you tried
> to fix here. It appears another similar change might be needed on line 13
> to fully qualify BAlloc?
>
> Here is the error message from the PS4 Windows build bot when it tried to
> build this change (http://lab.llvm.org:8011/builders/llvm-clang-lld-x86_
> 64-scei-ps4-windows10pro-fast/builds/324):
>
> C:\Buildbot\Slave\llvm-clang-lld-x86_64-scei-ps4-
> windows10pro-fast\llvm.src\tools\lld\ELF\Memory.cpp(13): error C2065:
> 'BAlloc': undeclared identifier
>
> Douglas Yung
>
> > -----Original Message-----
> > From: llvm-commits [mailto:llvm-commits-bounces at lists.llvm.org] On
> > Behalf Of Rui Ueyama via llvm-commits
> > Sent: Friday, October 28, 2016 14:10
> > To: llvm-commits at lists.llvm.org
> > Subject: [lld] r285453 - Attempt to fix a buildbot.
> >
> > Author: ruiu
> > Date: Fri Oct 28 16:09:56 2016
> > New Revision: 285453
> >
> > URL: http://llvm.org/viewvc/llvm-project?rev=285453&view=rev
> > Log:
> > Attempt to fix a buildbot.
> >
> > Modified:
> >     lld/trunk/ELF/Memory.cpp
> >
> > Modified: lld/trunk/ELF/Memory.cpp
> > URL: http://llvm.org/viewvc/llvm-
> > project/lld/trunk/ELF/Memory.cpp?rev=285453&r1=285452&r2=285453&view=di
> > ff
> > =======================================================================
> > =======
> > --- lld/trunk/ELF/Memory.cpp (original)
> > +++ lld/trunk/ELF/Memory.cpp Fri Oct 28 16:09:56 2016
> > @@ -12,4 +12,4 @@
> >  llvm::BumpPtrAllocator lld::elf::BAlloc;  llvm::StringSaver
> > lld::elf::Saver{BAlloc};
> >
> > -void lld::elf::freeArena() { BAlloc.Reset(); }
> > +void lld::elf::freeArena() { lld::elf::BAlloc.Reset(); }
> >
> >
> > _______________________________________________
> > llvm-commits mailing list
> > llvm-commits at lists.llvm.org
> > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161028/0bec8c55/attachment.html>


More information about the llvm-commits mailing list