search for: tripleorerr

Displaying 3 results from an estimated 3 matches for "tripleorerr".

2017 Sep 07
2
[ThinLTO] static library failure with object files with the same name
...Identifier, StringRef Data) { - ThinLTOBuffer Buffer(Data, Identifier); + std::string Id = + (Twine(Identifier) + "_" + std::to_string(Modules.size())).str(); + ThinLTOBuffer Buffer(Data, std::move(Id)); LLVMContext Context; StringRef TripleStr; ErrorOr<std::string> TripleOrErr = expectedToErrorOrAndEmitErrors( -- Mehdi 2017-09-07 8:18 GMT-07:00 Teresa Johnson <tejohnson at google.com>: > > > On Wed, Sep 6, 2017 at 1:28 PM, Davide Italiano via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> On Wed, Sep 6, 2017 at 1:10 PM, Joha...
2017 Sep 11
2
[ThinLTO] static library failure with object files with the same name
...Data, Identifier); >> + std::string Id = >> + (Twine(Identifier) + "_" + std::to_string(Modules.size())).str(); >> + ThinLTOBuffer Buffer(Data, std::move(Id)); >> LLVMContext Context; >> StringRef TripleStr; >> ErrorOr<std::string> TripleOrErr = expectedToErrorOrAndEmitErrors( >> >> >> >> >> -- >> Mehdi >> >> >> 2017-09-07 8:18 GMT-07:00 Teresa Johnson <tejohnson at google.com>: >> >>> >>> >>> On Wed, Sep 6, 2017 at 1:28 PM, Davide Italiano via l...
2017 Sep 06
3
[ThinLTO] static library failure with object files with the same name
On Wed, Sep 6, 2017 at 1:10 PM, Johan Engelen via llvm-dev <llvm-dev at lists.llvm.org> wrote: > On Tue, Sep 5, 2017 at 11:34 PM, Davide Italiano <dccitaliano at gmail.com> > wrote: >> >> On Tue, Sep 5, 2017 at 2:09 PM, Teresa Johnson <tejohnson at google.com> >> wrote: >> > >> > Hi Johan, >> > >> > Right, per the bug