Re: [PATCH] D15641: [Driver] Pass -O* to the gold plugin via -plugin-opt

2015-12-19 Thread James Molloy via cfe-commits
Hi Mehdi, > On 18 Dec 2015, at 23:17, Mehdi Amini wrote: > > The alternative to the command line flag is to encode the optimization level > in the bitcode itself. You may have answered Joerg's question here - I take it this is not yet implemented? James IMPORTANT NOTICE: The contents of this

Re: [PATCH] D13419: Fix several problems at the intersection of template instantiations and visibility

2015-12-19 Thread Keno Fischer via cfe-commits
loladiro added a comment. bump again Repository: rL LLVM http://reviews.llvm.org/D13419 ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Re: [PATCH] D15641: [Driver] Pass -O* to the gold plugin via -plugin-opt

2015-12-19 Thread Mehdi Amini via cfe-commits
Sent from my iPhone > On Dec 18, 2015, at 11:11 PM, James Molloy wrote: > > Hi Mehdi, > >> On 18 Dec 2015, at 23:17, Mehdi Amini wrote: >> >> The alternative to the command line flag is to encode the optimization level >> in the bitcode itself. > > You may have answered Joerg's question h

Re: [PATCH] D15641: [Driver] Pass -O* to the gold plugin via -plugin-opt

2015-12-19 Thread James Molloy via cfe-commits
It's interesting to think about, but not something I'm intending to attack right now. I mainly just wanted to know the answer to Joerg's question, and now I do :) James On Sat, 19 Dec 2015 at 17:17, Mehdi Amini via cfe-commits < cfe-commits@lists.llvm.org> wrote: > > > Sent from my iPhone > > >

Re: [PATCH] D15641: [Driver] Pass -O* to the gold plugin via -plugin-opt

2015-12-19 Thread Mehdi Amini via cfe-commits
> On Dec 19, 2015, at 8:11 AM, James Molloy wrote: > > It's interesting to think about, but not something I'm intending to attack > right now. > > I mainly just wanted to know the answer to Joerg's question, and now I do :) I missed Joerg’s question earlier, I didn’t know what you were refe

Re: [PATCH] D15651: Driver part of debugger tuning

2015-12-19 Thread Paul Robinson via cfe-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL256104: Driver part of debugger tuning. (authored by probinson). Changed prior to commit: http://reviews.llvm.org/D15651?vs=43259&id=43304#toc Repository: rL LLVM http://reviews.llvm.org/D15651 Fil

r256104 - Driver part of debugger tuning.

2015-12-19 Thread Paul Robinson via cfe-commits
Author: probinson Date: Sat Dec 19 13:41:48 2015 New Revision: 256104 URL: http://llvm.org/viewvc/llvm-project?rev=256104&view=rev Log: Driver part of debugger tuning. Adds driver options named -glldb and -gsce to mean -g plus tuning for lldb and SCE debuggers respectively; the existing -ggdb opt

[PATCH] D15670: Accept elided commas in macro function arguments for MS compatibility

2015-12-19 Thread Ehsan Akhgari via cfe-commits
ehsan created this revision. ehsan added reviewers: rnk, rsmith. ehsan added a subscriber: cfe-commits. This fixes PR25875. When the trailing comma in a macro argument list is elided, we need to treat it similarly to the case where a variadic macro misses one actual argument. http://reviews.llvm

[PATCH] D15674: [CodeGen] Fix assignments of inline layouts into the byref structure

2015-12-19 Thread Vedant Kumar via cfe-commits
vsk created this revision. vsk added a reviewer: rjmccall. vsk added a subscriber: cfe-commits. [CodeGen] Fix assignments of inline layouts into the byref structure When using blocks, a byref structure is created to represent the closure. The "byref.layout" field of this structure is an i8*. Howe