Mailing lists matching lists.llvm.org

cfe-commits lists.llvm.org
lldb-commits lists.llvm.org
llvm-branch-commits lists.llvm.org
llvm-bugs lists.llvm.org


[lldb-dev] [Bug 24813] New: TestBatchMode is not remote-ready

2015-09-14 Thread via lldb-dev
: P Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: lab...@google.com CC: llvm-b...@lists.llvm.org Classification: Unclassified The test fails for remote platforms as it does not know how to run processes remotely. -- You are

[lldb-dev] [Bug 24843] New: "ninja lldb-server" on OS X reports "error: unknown target 'lldb-server'"

2015-09-16 Thread via lldb-dev
intosh OS: All Status: NEW Severity: normal Priority: P Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: todd.fi...@gmail.com CC: llvm-b...@lists.llvm.org Classification: Unclassified -

Re: Add warning for c++ member variable shadowing

2017-02-07 Thread James Sun via cfe-commits
Hi Richard, Saleem I cleaned up the patch by removing some unrelated unit tests. Also Saleem can help me with the commit. Thanks! James From: James Sun Date: Saturday, February 4, 2017 at 11:35 PM To: Richard Smith Cc: Saleem Abdulrasool , "cfe-commits@lists.llvm.org" , Aar

Re: Add warning for c++ member variable shadowing

2017-02-02 Thread James Sun via cfe-commits
Hi Richard Thanks for the feedback! Hopefully addressed! Thanks James From: on behalf of Richard Smith Date: Wednesday, February 1, 2017 at 3:50 PM To: James Sun Cc: Saleem Abdulrasool , "cfe-commits@lists.llvm.org" , Aaron Ballman Subject: Re: Add warning for c++ membe

Re: r369999 - Don't lose the FoundDecl and template arguments for a DeclRefExpr in

2019-09-26 Thread Richard Smith via cfe-commits
On Wed, 25 Sep 2019 at 11:48, Peter Collingbourne via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Hi Richard, it looks like this commit caused an assertion failure on the > following input: > > $ cat test2.ii > # 2 "" 3 > namespace a { > enum { b };

Re: [clang] 3b34d69 - Revert "For #64088: mark vtable as used if we might emit a reference to it."

2023-08-06 Thread David Blaikie via cfe-commits
Ping on this - please always include details on the reason for a revert. On Tue, Aug 1, 2023 at 10:09 AM Richard Smith via cfe-commits < cfe-commits@lists.llvm.org> wrote: > This revert reintroduces a wrong-code bug, can you explain what the > purpose of the revert is? > > On F

Re: r284137 - [ThinLTO] Update doc to include lld (now supported).

2016-10-17 Thread Rui Ueyama via cfe-commits
Agreed. We should define them as aliases to existing options without -plugin-opt. On Sun, Oct 16, 2016 at 6:43 PM, Sean Silva via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Nice to see this land! > > One nit: > Currently, doesn't LLD/ELF ignore -plugin-opt? T

Re: r285027 - Fix test on non-X86 platforms

2016-10-24 Thread Renato Golin via cfe-commits
4 Oct 2016 23:53, "Mehdi Amini via cfe-commits" < cfe-commits@lists.llvm.org> wrote: > The test is validating pointer size as well, so it is failing on 32 bits > right now. > > I could try to differentiate some of the check and have them work on both > size, but I ca

Re: r250514 - PS4: Make sure to add the sanitizer runtime before any linker input

2015-10-19 Thread Artem Belevich via cfe-commits
> On Fri, Oct 16, 2015 at 11:52 PM, Artem Belevich via cfe-commits < > cfe-commits@lists.llvm.org> wrote: > >> Filipe, >> >> FYI, this change appears to introduce a somewhat subtle problem. clang >> compiled with itself starts producing (false positive?) warni

Re: r268797 - Fix sysroot-prefix.c on Windows (/ vs \).

2016-05-06 Thread Nico Weber via cfe-commits
On Fri, May 6, 2016 at 5:43 PM, Yaron Keren via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Hi Nico, > > In other tests, {{/|}} or {{/|\\}} are used match the forward or > backward slash(es). clang escapes \ so we get two of them in output and > four in the LIT

Re: [clang] c2f9086 - [Driver] Gnu.cpp: drop an unneeded special rule related to sysroot

2021-03-22 Thread Arthur Eubanks via cfe-commits
Same error on the Android Chrome bots, although I didn't check if this commit was the issue. https://ci.chromium.org/ui/p/chromium/builders/ci/ToTAndroid/16087/overview On Mon, Mar 22, 2021 at 9:11 AM Matt Morehouse via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Hi Fan

Re: [cfe-users] Why doesn't clang use colors for diagnostics by default?

2015-09-10 Thread don hinton via cfe-users
Try setting TERM to a color terminal, e.g., xterm-color or xterm-256color >> and see if that helps. I use xterm-256color inside tmux and it works >> fine. >> >> hth... >> don >> >> On Thu, Sep 10, 2015 at 2:40 AM, Victor via cfe-users < >> c

Re: [cfe-users] problem with `candidate template ignored: invalid explicitly-specified argument'

2018-11-05 Thread David Blaikie via cfe-users
ether it violates the standard or not is beyond my knowledge > though. > > type params > https://godbolt.org/z/WpET78 > > nontype params > https://godbolt.org/z/PZIaDn > > Jan > > > On Nov 5, 2018, at 4:36 PM, David Blaikie via cfe-users < > cfe-users@lists

Re: [Lldb-commits] Support of MSVC function-level linking

2018-05-31 Thread Leonard Mosescu via lldb-commits
mmits < lldb-commits@lists.llvm.org> wrote: > > > On May 31, 2018, at 2:31 AM, Aleksandr Urakov via lldb-commits < > lldb-commits@lists.llvm.org> wrote: > > Hello! > > I'm Aleksandr from JetBrains. We are working on improving support of > MSVC-compiled

Re: [Lldb-commits] [lldb] r319596 - Fix warnings in JSON.cpp, NFC

2017-12-01 Thread Jim Ingham via lldb-commits
SONNumber::GetAsSigned() const > >case DataType::Double: > > return (int64_t)m_data.m_double; > >} > > - assert("Unhandled data type"); > > } > > > > double JSONNumber::GetAsDouble() const { > > @@ -82,7 +80,6 @@ double JSONN

Re: [Lldb-commits] [lldb] r327512 - [test] Disable TestMachCore everywhere except on Darwin

2018-03-14 Thread Pavel Labath via lldb-commits
tried following through on that (so I don't know whether we'll run into some code including system headers or such...). On Wed, 14 Mar 2018 at 17:20, Greg Clayton via lldb-commits < lldb-commits@lists.llvm.org> wrote: > What part is ifdef'ed? Mach core files should be available on

Re: [Lldb-commits] Patch for fixing FDE indexing when scan debug_info section

2017-05-23 Thread Tatyana Krasnukha via lldb-commits
@lists.llvm.org Subject: Re: [Lldb-commits] Patch for fixing FDE indexing when scan debug_info section It looks ok to me. Please put the differences of .eh_frame and .debug_frame that you described below in code comments too.​ Thanks, Abid From: lldb-commits

Re: [Lldb-commits] [lldb] r252124 - Fix build on Linux.

2015-11-04 Thread Chaoren Lin via lldb-commits
ame thing in other MacOSX platform files where they depend > on Apple specific libraries. > >> > >> > >>> On Nov 4, 2015, at 5:39 PM, Jim Ingham via lldb-commits < > lldb-commits@lists.llvm.org> wrote: > >>> > >>> Why are we trying to build

Re: [Lldb-commits] [PATCH] D19215: normalize test file extension for test filenames

2016-04-18 Thread Zachary Turner via lldb-commits
k I ever > knew, but if I did I've certainly forgotten it... Anyway, sounds like that > got turned back on again, and we should turn it off again... > > > > Jim > > > > > On Apr 18, 2016, at 11:01 AM, Zachary Turner via lldb-commits < > lldb-commits@list

Re: [Lldb-commits] [lldb] r246518 - Attempt at fixing the CMake build

2015-09-01 Thread Pavel Labath via lldb-commits
ke/builds/5758>. I think the problem is relatively minor, but I lack the knowledge to fix it, so I have reverted these changes until you can investigate. pl On 1 September 2015 at 02:26, Enrico Granata via lldb-commits < lldb-commits@lists.llvm.org> wrote: > > On Aug 31, 2015, at 6:2

Re: [lldb-dev] Listening for thread events

2016-01-30 Thread Jeffrey Tan via lldb-dev
What event_mask should be used for the thread event class? I did not find any. (Sorry for hijacking the thread) On Fri, Jan 29, 2016 at 4:02 PM, Jim Ingham via lldb-dev < lldb-dev@lists.llvm.org> wrote: > It’s unclear to me why it would be a problem to listen to every thread > o

Re: [lldb-dev] How to link lldb on i386

2016-05-24 Thread Pavel Labath via lldb-dev
> >> > As reported here: >> > >> > https://llvm.org/bugs/show_bug.cgi?id=27237 >> > >> > >> > (yes, I use shared libraries) >> > >> > Any workaround? >> > >> > Thanks, >> > Sylvestre >> > PS: plea

Re: [lldb-dev] LLDB Evolution

2016-08-11 Thread Zachary Turner via lldb-dev
t actually tested this or ever used this option in practice, just see that it's there and claims to be for this use case) On Thu, Aug 11, 2016 at 10:00 AM Sean Callanan via lldb-dev < lldb-dev@lists.llvm.org> wrote: > In fact, the lldbinline tests could be completely broken by > c

Re: [lldb-dev] Connecting to lldb-rpc-server

2016-10-07 Thread Rex Fenley via lldb-dev
Why do you want to send commands to LLDB from a different process? > > We have a bunch of different extension points in LLDB, so it's possible > that what you're trying to do is actually already possible > > On Oct 7, 2016, at 10:41 AM, Rex Fenley via lldb-dev < > ll

Re: [lldb-dev] llvm changing line table info from DWARF 2 to DWARF 4

2016-10-19 Thread Eric Christopher via lldb-dev
hat to > build lldb but uses it for the tests. That'll get us at least some testing > here. > > -eric > > > On Wed, Oct 19, 2016 at 12:55 PM Greg Clayton via lldb-dev < > lldb-dev@lists.llvm.org> wrote: > > I believe we are good, but it would be good to verify v

Re: [lldb-dev] lldb-3.8.1 prebuilt binary for windows7

2016-11-23 Thread Vadim Chugunov via lldb-dev
>> wrote: >> >> He said he did, so I don't know. Vadim, can you elaborate? When you run >> `lldb -P` from the command line, what do you see? >> >> On Tue, Oct 11, 2016 at 4:00 PM Reid Kleckner via lldb-dev < >> lldb-dev@lists.llvm.org> wrote:

Re: [lldb-dev] Conditionally adding sources to the build

2016-12-02 Thread Pavel Labath via lldb-dev
than one file > this way, then maybe a subfolder would make more sense though. > > pl > > On 1 December 2016 at 00:30, Zachary Turner via lldb-dev < > lldb-dev@lists.llvm.org> wrote: > >> Unfortunately you will need to separate them at the directory levels. >>

Re: [lldb-dev] [cfe-dev] [llvm-dev] [4.0.0 Release] Relase Candidate 1 has been tagged

2017-01-23 Thread Hans Wennborg via lldb-dev
gt; >>>> There are still open merge requests and bugs, but I'd like to get the >>>> testing started to see what issues come up. >>>> >>>> Please build, test, and upload binaries to the sftp. Let me know how >>>> it goes. I'll upl

Re: [lldb-dev] [llvm-dev] Adding DWARF5 accelerator table support to llvm

2018-01-19 Thread Frédéric Riss via lldb-dev
rect evolution of the "Apple" >>> accelerator tables that are implemented in LLVM (after going through the >>> standardization process and being reworked/generalized there), so we hope >>> that the implementation can at least share some common interfaces with the >

Re: [lldb-dev] clang::VersionTuple

2018-05-08 Thread Zachary Turner via lldb-dev
vm and use llvm::VersionTuple > > > I agree, though this move will cause merging issues for many that have > repositories that link against older llvm/clang. Doesn't affect me anymore, > but Apple will be affected. > > Greg > > On Tue, May 8, 2018 at 9:26 AM Greg Clayton

Re: [lldb-dev] Do we have any infrastructure for creating mini dump files from a loaded process or from a core file?

2018-06-13 Thread Leonard Mosescu via lldb-dev
e & > cross-platform minidump writer, that's what I'd start with. > > On Wed, Jun 13, 2018 at 1:38 PM, Adrian McCarthy via lldb-dev < > lldb-dev@lists.llvm.org> wrote: > >> Zach's right. On Windows, lldb can produce a minidump, but it just calls >&g

Re: [lldb-dev] Symbol Server for LLDB

2019-03-25 Thread Murali Venu Thyagarajan via lldb-dev
As Adrian hints, there's an interest in adding first class support for >> symbol servers to LLDB. >> >> >> >> On Mon, Mar 25, 2019 at 9:02 AM Adrian McCarthy via lldb-dev < >> lldb-dev@lists.llvm.org> wrote: >> >>> Not currently (at l

Re: [lldb-dev] Symbol Server for LLDB

2019-03-25 Thread Leonard Mosescu via lldb-dev
ight >>> be relevant too. >>> >>> As Adrian hints, there's an interest in adding first class support for >>> symbol servers to LLDB. >>> >>> >>> >>> On Mon, Mar 25, 2019 at 9:02 AM Adrian McCarthy via lldb-dev < >

Re: [lldb-dev] [llvm-dev] HTTP library in LLVM

2020-08-31 Thread Jonas Devlieghere via lldb-dev
On Mon, Aug 31, 2020 at 4:38 PM Petr Hosek via llvm-dev < llvm-...@lists.llvm.org> wrote: > There are several options, I've looked at couple of them and the one I > like the most so far is https://github.com/yhirose/cpp-httplib for a few > reasons: > > * It's MIT

Re: [lldb-dev] [RFC] Simplifying logging code

2015-08-13 Thread Tamas Berghammer via lldb-dev
full code base within a reasonably short period of time to avoid confusion with the multiple log patterns. Tamas On Wed, Aug 12, 2015 at 7:00 PM Zachary Turner via lldb-dev < lldb-dev@lists.llvm.org> wrote: > After the previous discussion I agree that evaluating the arguments is > unacce

Re: [Lldb-commits] [lldb] 9f6a308 - [lldb/Utility] Fix a bug in stringify_append for printing addresses.

2020-04-16 Thread Jonas Devlieghere via lldb-commits
vidino Italiano wrote: > > > On Apr 16, 2020, at 2:37 PM, Shafik Yaghmour via lldb-commits < > lldb-commits@lists.llvm.org> wrote: > > > On Apr 16, 2020, at 2:04 PM, Jonas Devlieghere via lldb-commits < > lldb-commits@lists.llvm.org> wrote: > > > Autho

RE: r280057 - Combine two FileCheck patterns to prevent overzealous matching of .*

2016-08-30 Thread Robinson, Paul via cfe-commits
gt; From: cfe-commits > [mailto:cfe-commits-boun...@lists.llvm.org<mailto:cfe-commits-boun...@lists.llvm.org>] > On Behalf Of > Richard Smith via cfe-commits > Sent: Monday, August 29, 2016 10:15 PM > To: cfe-commits@lists.llvm.org<mailto:cfe-commits@lists.llvm.org>

Re: [cfe-users] cfe-users Digest, Vol 102, Issue 1

2021-07-11 Thread Crystallstarr Plumb via cfe-users
gt; Send cfe-users mailing list submissions to > cfe-users@lists.llvm.org > > To subscribe or unsubscribe via the World Wide Web, visit >https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users > or, via email, send a message with subject or body 'help' to >

Re: [Lldb-commits] [PATCH] D38938: Logging: provide a way to safely disable logging in a forked process

2017-10-16 Thread Jim Ingham via lldb-commits
from exec in this regard). > > Tamas > > On Mon, Oct 16, 2017 at 1:57 PM Zachary Turner via lldb-commits > mailto:lldb-commits@lists.llvm.org>> wrote: > On Sun, Oct 15, 2017 at 3:15 PM Pavel Labath <mailto:lab...@google.com>> wrote: > On 15 October 2017

Re: [Lldb-commits] [lldb] r282683 - Add a unit test for an x86_64 assembly inspection of

2016-09-29 Thread Pavel Labath via lldb-commits
Note that the test fails when using gcc as a compiler (specifically gcc-4.9 in this case, but hopefully the exact version does not matter here). Jason, will you be able to check this out today? On 29 September 2016 at 05:45, Dimitar Vlahovski via lldb-commits < lldb-commits@lists.llvm.org>

Re: [lldb-dev] compile failure with VS 2015 Update 3

2016-06-30 Thread Reid Kleckner via lldb-dev
Jun 30, 2016 at 3:16 PM, Adrian McCarthy via lldb-dev < lldb-dev@lists.llvm.org> wrote: > I left out some words. I meant: > > The answers on that StackOverflow question claim that 32-bit MSVC never > does more than 32-byte alignment *for parameters*. > > On Thu, Jun 30, 20

Re: [lldb-dev] LLDB REFORMATTING IN PROGRESS

2016-09-08 Thread Zachary Turner via lldb-dev
y patch changed the style outside the patch (diff: > https://reviews.llvm.org/D24331?vs=70653&id=70654). Am I doing something > wrong? > > On Wed, Sep 7, 2016 at 1:06 PM, Pavel Labath via lldb-dev < > lldb-dev@lists.llvm.org> wrote: > > Windows unit tests passing now.

Re: [lldb-dev] Setting shared library search paths and core files

2017-05-08 Thread John Lindal via lldb-dev
;> >> With gdb, I'd do something like: >> >> set sysroot . >> file opt/my_cool_program >> core my_broken_coredump >> >> then everything would work. >> >> I've tried >> (http://lists.llvm.org/pipermail/lldb-dev/2

[PATCH] D121078: Replace links to archived mailing lists by links to Discourse forums

2022-03-06 Thread Danny Mösch via Phabricator via cfe-commits
, feel free to email the `llvm-dev mailing -list <http://lists.llvm.org/mailman/listinfo/llvm-dev>`_: it has lots +stuck or want to talk about it, feel free to open a thread in the `LLVM +forum <https://discourse.llvm.org>`_: it has lots of people who are interested in languages and are ofte

[Lldb-commits] [PATCH] D121078: Replace links to archived mailing lists by links to Discourse forums

2022-03-07 Thread Danny Mösch via Phabricator via lldb-commits
, feel free to email the `llvm-dev mailing -list <http://lists.llvm.org/mailman/listinfo/llvm-dev>`_: it has lots +stuck or want to talk about it, feel free to open a thread in the `LLVM +forum <https://discourse.llvm.org>`_: it has lots of people who are interested in languages and are ofte

Re: r314079 - Fix implicit-fallthrough warning by adding missing break

2017-09-25 Thread David Blaikie via cfe-commits
Is there also missing test coverage here? On Sun, Sep 24, 2017 at 8:19 AM Simon Pilgrim via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Author: rksimon > Date: Sun Sep 24 08:17:46 2017 > New Revision: 314079 > > URL: http://llvm.org/viewvc/llvm-project?rev=314079&

Re: r338749 - Work around more GCC miscompiles exposed by r338464.

2018-08-02 Thread Richard Smith via cfe-commits
(+Hans) +1 On Thu, 2 Aug 2018 at 11:37, Martin Storsjö via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Hans, > > I think this commit should be merged to the 7.0 release branch; the first > half of the GCC workaround made it in before the branch happened, but > there

Re: r305213 - Add regression test for r305179.

2017-06-12 Thread David Blaikie via cfe-commits
Prefer FileCheck over grep, generally? On Mon, Jun 12, 2017 at 11:05 AM Yaron Keren via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Author: yrnkrn > Date: Mon Jun 12 13:05:13 2017 > New Revision: 305213 > > URL: http://llvm.org/viewvc/llvm-project?rev=305213&

Re: r351316 - Reapply [Tooling] Make clang-tool find libc++ dir on mac when running on a file without compilation database.

2019-01-16 Thread Greg Bedwell via cfe-commits
27;s fix r351360 or/and any subsequent 'more correct' test updates (if required) to get check-all on the branch into a passing state. -Greg On Wed, 16 Jan 2019 at 17:49, Jeremy Morse via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Platform REQUIRES added in r351360, please

Re: r359048 - C++ DR2387: a variable template declared wtih (or instantiated with) a

2019-04-24 Thread Richard Smith via cfe-commits
Thanks for the revert. Looks like this is probably an unfortunate interaction with the internal_linkage attribute. On Wed, 24 Apr 2019, 01:48 Ilya Biryukov via cfe-commits, < cfe-commits@lists.llvm.org> wrote: > Reverted in r359076. > > On Wed, Apr 24, 2019 at 10:28 AM Ilya Bi

Re: clang_getIncudedFile python binding fix

2018-05-03 Thread Jonathan Coe via cfe-commits
This patch looks good to me - great work! If you can upload it to https://reviews.llvm.org then I can review and merge it for you once it's approved. regards, Jon On 3 May 2018 at 08:55, József LÁZ via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Hi all, > > I

[PATCH] D77056: [Sema][SVE] Allow non-member operators for SVE types

2020-05-01 Thread Richard Sandiford via Phabricator via cfe-commits
rsandifo-arm added a comment. I'd like to promote this from an RFC to an RFA. The associated cfe-dev discussion was: http://lists.llvm.org/pipermail/cfe-dev/2020-March/065060.html continuing into April here: http://lists.llvm.org/pipermail/cfe-dev/2020-April/065069.html I don't t

Re: [llvm-dev] LLVM buildmaster is back to work now but two builders remain OFF

2017-11-29 Thread Greg Bedwell via cfe-commits
> Two slaves remain off for now as they produce a lot of warnings and their log files are way too big. I think https://reviews.llvm.org/D40603 will fix this issue. -Greg On 28 November 2017 at 22:13, Galina Kistanova via llvm-dev < llvm-...@lists.llvm.org> wrote: > Hello everyo

Re: r320297 - Fix MSVC 'not all control paths return a value' warning

2017-12-11 Thread Alex L via cfe-commits
Thanks! On 10 December 2017 at 03:05, Simon Pilgrim via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Author: rksimon > Date: Sun Dec 10 03:05:14 2017 > New Revision: 320297 > > URL: http://llvm.org/viewvc/llvm-project?rev=320297&view=rev > Log: > Fix MSVC

Re: r308996 - [coroutines] Add serialization/deserialization of coroutines

2017-08-02 Thread Richard Smith via cfe-commits
On 31 July 2017 at 09:11, Hans Wennborg via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Richard, Gor asked for this to be merged to 5.0. What do you think? Sounds good to me. On Tue, Jul 25, 2017 at 11:01 AM, Gor Nishanov via cfe-commits > wrote: > > Author: gornish

Re: [clang] 4711512 - Fix oversight in AST traversal helper

2020-01-05 Thread Aaron Ballman via cfe-commits
Can you also include more detail in commit logs than this? It doesn't explain why this is an oversight, which makes code archaeology harder later. On Sun, Jan 5, 2020, 3:32 PM Stephen Kelly via cfe-commits < cfe-commits@lists.llvm.org> wrote: > > Author: Stephen Kelly > Da

Re: Github build status reporting

2019-12-03 Thread Alex L via cfe-commits
a cfe-commits < cfe-commits@lists.llvm.org> wrote: > Hello everyone, > > I have configured buildbot to report build statuses to github. It is > running in a pilot mode. Only the following 4 builders annotate revisions > they build for now: > > * llvm-clang-lld-x86_64-scei-ps

Re: [PATCH] D23926: [libcxx] Don't use C99 math ops in -std=c++03 mode

2016-09-03 Thread Asiri Rathnayake via cfe-commits
@Eric: Ping? On 1 Sep 2016 11:33, "Asiri Rathnayake via cfe-commits" < cfe-commits@lists.llvm.org> wrote: > rmaprath updated this revision to Diff 69962. > rmaprath added a comment. > > Simplified the patch a little bit more. > > Now, librar

Re: r280607 - PR 27200: Fix names of the atomic lock-free macros.

2016-09-03 Thread Richard Smith via cfe-commits
On 3 Sep 2016 6:01 p.m., "Joerg Sonnenberger via cfe-commits" < cfe-commits@lists.llvm.org> wrote: On Sat, Sep 03, 2016 at 05:56:43PM -0700, Richard Smith wrote: > /* 7.17.2 Initialization */ > > #define ATOMIC_VAR_INIT(value) (value) > #define atomic_init __c1

Re: Bug 23529: Add support for gcc's attribute abi_tag (needed for compatibility with gcc 5's libstdc++)

2015-09-12 Thread David Majnemer via cfe-commits
Would you mind sticking abi-tag.patch in phabricator: http://llvm.org/docs/Phabricator.html ? Your patch is big enough that it would make it a little easier for me to review. On Sat, Sep 12, 2015 at 7:12 AM, Stefan Bühler via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Hi all,

Re: r247882 - Appease clang/test/CodeGen/avx512dq-builtins.c for -Asserts, for now.

2015-09-17 Thread NAKAMURA Takumi via cfe-commits
-Asserts was not culprit. On Thu, Sep 17, 2015 at 9:35 PM NAKAMURA Takumi via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Author: chapuni > Date: Thu Sep 17 07:33:34 2015 > New Revision: 247882 > > URL: http://llvm.org/viewvc/llvm-project?rev=247882&view=rev &g

Re: [PATCH] D12903: Add -fplugin=name.so option to the driver

2015-09-18 Thread Richard Smith via cfe-commits
On Fri, Sep 18, 2015 at 8:22 PM, Saleem Abdulrasool via cfe-commits < cfe-commits@lists.llvm.org> wrote: > compnerd accepted this revision. > compnerd added a reviewer: compnerd. > compnerd added a comment. > This revision is now accepted and ready to land. > > Looks fine

Re: r248234 - ms Intrin.h: Fix __movsw's and __stosw's inline asm.

2015-09-22 Thread Nico Weber via cfe-commits
It says "error: unable to create target: 'No available targets are compatible with this triple, see -version for the available targets.'" I guess you disable a bunch of targets on that bot? On Tue, Sep 22, 2015 at 6:00 PM, Renato Golin via cfe-commits < cfe-commits@lists.ll

Re: [PATCH] fix parentheses location in a CXXConstructExpr

2015-08-31 Thread Manuel Klimek via cfe-commits
On Sat, Aug 29, 2015 at 12:23 PM Olivier Goffart via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Hi, > > Please review the attached patch. > > In Sema::BuildCXXFunctionalCastExpr, if the class has a destructor, the > Op.SrcExpr might be a CXXBindTemporaryExpr

Re: [libcxx] r244462 - Protect template argument from user interference.

2015-08-10 Thread Eric Fiselier via cfe-commits
This is my mistake and I would like to see it merged. On Aug 10, 2015 2:13 PM, "Hans Wennborg via cfe-commits" < cfe-commits@lists.llvm.org> wrote: > On Mon, Aug 10, 2015 at 11:09 AM, Joerg Sonnenberger via cfe-commits > wrote: > > On Mon, Aug 10, 2015 at 04:58:04PM -

Re: r277221 - Remove unused variable.

2016-07-29 Thread Eric Christopher via cfe-commits
Hi Hans, Can you make sure this makes it into 3.9 please? Thanks! -eric On Fri, Jul 29, 2016 at 3:18 PM Eric Christopher via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Author: echristo > Date: Fri Jul 29 17:11:11 2016 > New Revision: 277221 > > URL: http://llvm.or

Re: [PATCH] D22834: Added 'inline' attribute to basic_string's destructor

2016-08-01 Thread David Blaikie via cfe-commits
On Tue, Jul 26, 2016 at 4:37 PM Laxman Sole via cfe-commits < cfe-commits@lists.llvm.org> wrote: > laxmansole created this revision. > laxmansole added reviewers: mclow.lists, howard.hinnant. > laxmansole added subscribers: cfe-commits, sebpop, hiraditya, evandro, > flyingforyo

Re: [PATCH] D17434: [Clang-tidy] Make readability-container-size-empty working with STL string

2016-02-18 Thread David Blaikie via cfe-commits
should probably have test coverage On Thu, Feb 18, 2016 at 6:46 PM, Eugene Zelenko via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Eugene.Zelenko created this revision. > Eugene.Zelenko added reviewers: alexfh, xazax.hun, aaron.ballman. > Eugene.Zelenko added a subscrib

Re: [PATCH] D19831: [scan-build] fix dead store warnings emitted on clang code base

2016-05-02 Thread David Blaikie via cfe-commits
Any reason not to remove the story instead? On Mon, May 2, 2016 at 1:36 PM, Apelete Seketeli via cfe-commits < cfe-commits@lists.llvm.org> wrote: > apelete created this revision. > apelete added a reviewer: akyrtzi. > apelete added a subscriber: cfe-commits. > > This fixes d

Re: [PATCH] D19831: [scan-build] fix dead store warnings emitted on clang code base

2016-05-03 Thread David Blaikie via cfe-commits
Looks good to me - go ahead & commit whenever you're ready. On Mon, May 2, 2016 at 11:40 PM, Apelete Seketeli via cfe-commits < cfe-commits@lists.llvm.org> wrote: > apelete updated this revision to Diff 55952. > apelete added a comment. > > [scan-build] fix dead stor

Re: [clang-tools-extra] r271295 - IncludeFixerTests: Update libdeps.

2016-05-31 Thread Eric Liu via cfe-commits
Thanks for the patch! On Tue, May 31, 2016 at 6:48 PM NAKAMURA Takumi via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Author: chapuni > Date: Tue May 31 11:41:39 2016 > New Revision: 271295 > > URL: http://llvm.org/viewvc/llvm-project?rev=271295&view=rev > Log:

Re: [libcxx] r272632 - Ignore depricated warnings from and

2016-06-14 Thread Eric Fiselier via cfe-commits
evil. Hope that clears things up. /Eric On Tue, Jun 14, 2016 at 2:36 AM, Joerg Sonnenberger via cfe-commits < cfe-commits@lists.llvm.org> wrote: > On Tue, Jun 14, 2016 at 03:26:11AM -, Eric Fiselier via cfe-commits > wrote: > > Author: ericwf > > Date: Mon Jun 13 22

Re: [PATCH] D15899: Add -fno-movt frontend option, to disable movt/movw on ARM

2016-01-05 Thread Eric Christopher via cfe-commits
On Tue, Jan 5, 2016 at 12:29 PM Joerg Sonnenberger via cfe-commits < cfe-commits@lists.llvm.org> wrote: > On Tue, Jan 05, 2016 at 08:12:34PM +, Dimitry Andric via cfe-commits > wrote: > > In rL256641, @davide turned off movt generation by default for FreeBSD. > > Th

Re: [PATCH] D14872: PR25575: Make GCC 4.4+ comatible layout for packed bit-fileds of char type

2015-11-25 Thread Richard Smith via cfe-commits
On Nov 25, 2015 1:53 PM, "hfin...@anl.gov via cfe-commits" < cfe-commits@lists.llvm.org> wrote: > > hfinkel added inline comments. > > > Comment at: include/clang/Basic/DiagnosticSemaKinds.td:2783 > @@ -2783,1 +2782,3 @@ > + "the newer

Re: [PATCH] D12466: Fix empty -L Path on OSX hosts

2015-11-25 Thread David Blaikie via cfe-commits
Is this testable? On Nov 25, 2015 5:56 PM, "Martell Malone via cfe-commits" < cfe-commits@lists.llvm.org> wrote: > This revision was automatically updated to reflect the committed changes. > Closed by commit rL254117: Driver: protect from empty -L args (authored by > ma

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

2015-12-18 Thread James Molloy via cfe-commits
ver picked, and that can significantly change the backend's behaviour. This isn't about linker optimizations. James On Fri, 18 Dec 2015 at 15:50 Joerg Sonnenberger via cfe-commits < cfe-commits@lists.llvm.org> wrote: > On Fri, Dec 18, 2015 at 01:53:58PM +, James Molloy wrot

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

2015-12-18 Thread James Molloy via cfe-commits
rger via cfe-commits < cfe-commits@lists.llvm.org> wrote: > On Fri, Dec 18, 2015 at 05:31:45PM +, James Molloy via cfe-commits > wrote: > > Evidently not, at least not completely. I see codegen differences with > this > > patch (and at least one significant improvement).

Re: [cfe-users] Reproducible builds

2015-08-24 Thread don hinton via cfe-users
. hth... don On Mon, Aug 24, 2015 at 12:57 AM, Stephan Gatzka via cfe-users < cfe-users@lists.llvm.org> wrote: > Hi! > > I just added support for reproducible builds (-frandom-seed=) into the > qbs build system. > > For a automated test case I'd like to have a small s

Re: [cfe-users] [cfe-dev] lists.llvm.org server maintenance, Friday Dec 18 @10:30 PST

2015-12-21 Thread John Criswell via cfe-users
___ cfe-dev mailing list cfe-...@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev -- John Criswell Assistant Professor Department of Computer Science, University of Rochester http://www.cs.rochester.edu/u/criswell

Re: [cfe-users] Error: ISO C++17 does not allow 'register' storage class specifier [-Wregister] when building Boost 1.69.0

2018-12-30 Thread David Blaikie via cfe-users
You could add -Wno-register to the compilation flags, or remove the use of the register keyword from boost, or not compile in C++17 mode? - Dave On Tue, Dec 25, 2018 at 1:10 PM Osman Zakir via cfe-users < cfe-users@lists.llvm.org> wrote: > When I tried to build Boost with LLVM, I got

Re: [cfe-users] How do I make CMake use LLD

2019-03-11 Thread Itaru Kitayama via cfe-users
gt; y.o" to produce a.out), so you can add to your linker flags "-fuse-ld=lld" > to tell the compiler wrapper to lld. > > On Mon, Mar 4, 2019 at 7:06 AM Itaru Kitayama via cfe-users < > cfe-users@lists.llvm.org> wrote: > >> Hi, >> Keeping the system li

Re: [cfe-users] dumb question about record-command-line

2019-11-19 Thread David Blaikie via cfe-users
c) to dump the contents of that section. On Tue, Nov 19, 2019 at 8:44 AM Jerry Scharf via cfe-users < cfe-users@lists.llvm.org> wrote: > Hi, > > I have an exceeding dumb question. > > If I turn on -frecord-command-line, how do I view it in the object > files, libraries and

Re: [cfe-users] DeclRefExpr question

2019-12-03 Thread David Blaikie via cfe-users
. On Tue, Dec 3, 2019 at 1:33 PM Robert Ankeney via cfe-users < cfe-users@lists.llvm.org> wrote: > Let's assume I have a DeclRefExpr that is referenceing some variable that > is declared as "static const int var;". How can I determine the variable is > static? Th

Re: [cfe-users] DeclRefExpr question

2019-12-03 Thread Robert Ankeney via cfe-users
hat's being referenced (could be a function, etc, > etc) then do whatever you want to do with that VarDecl. > > On Tue, Dec 3, 2019 at 1:33 PM Robert Ankeney via cfe-users < > cfe-users@lists.llvm.org> wrote: > >> Let's assume I have a DeclRefExpr that is referen

Re: [cfe-users] Clang optimization options with out dead code elimination?

2019-12-19 Thread David Blaikie via cfe-users
izersn (address, memory, undefined behavior sanitizer) to help identify if there are bugs that could be fixed. On Thu, Dec 19, 2019 at 12:19 AM Guofeng Zhang via cfe-users < cfe-users@lists.llvm.org> wrote: > Hi, > > We use clang 8+. Does clang have options (not -O0) that do not remove d

Re: [cfe-users] clangd --clang-tidy: // NOLINT only works sometimes

2020-01-26 Thread David Blaikie via cfe-users
+Sam in case he's got some thoughts or can rope in others who might. On Sun, Jan 26, 2020 at 1:03 PM tastytea via cfe-users < cfe-users@lists.llvm.org> wrote: > Hi, > I recently started using clangd (9.0.1) with --clang-tidy. I noticed > that suppressing diagnostics only some

Re: [Lldb-commits] [PATCH] D13574: [LLDB] Fix Clang-tidy misc-use-override warnings in some files in include/lldb/Core; other minor fixes.

2015-10-09 Thread Adrian McCarthy via lldb-commits
Greg Clayton via lldb-commits < lldb-commits@lists.llvm.org> wrote: > clayborg accepted this revision. > clayborg added a comment. > This revision is now accepted and ready to land. > > We are pretty inconsistent with the space after a function name and before > the ( so I

Re: [Lldb-commits] [lldb] r252353 - Fix Linux tests after r252348.

2015-11-06 Thread Zachary Turner via lldb-commits
Thanks, sorry about that. On Fri, Nov 6, 2015 at 2:32 PM Chaoren Lin via lldb-commits < lldb-commits@lists.llvm.org> wrote: > Author: chaoren > Date: Fri Nov 6 16:30:30 2015 > New Revision: 252353 > > URL: http://llvm.org/viewvc/llvm-project?rev=252353&view=rev >

Re: [Lldb-commits] [PATCH] D23545: Minidump parsing

2016-08-16 Thread Zachary Turner via lldb-commits
I would prefer to use llvm types to do the parsing wherever possible. Why do we need DataExtractor? If the only reason is to force little endian, just use the types in llvm/Endian.h On Tue, Aug 16, 2016 at 8:13 AM Dimitar Vlahovski via lldb-commits < lldb-commits@lists.llvm.org>

Re: [Lldb-commits] [PATCH] D19215: normalize test file extension for test filenames

2016-04-18 Thread Zachary Turner via lldb-commits
its@lists.llvm.org> wrote: > labath accepted this revision. > labath added a comment. > This revision is now accepted and ready to land. > > Ok, makes sense then, thanks for making sure it's necessary. > > I don't quite understand how the string makes it's way ther

Re: [Lldb-commits] [PATCH] D12683: Fix debugger shutdown when Python interpreter is loaded

2015-09-07 Thread Zachary Turner via lldb-commits
What were the symptoms of this? How'd you find it? On Mon, Sep 7, 2015 at 6:47 PM Oleksiy Vyalov via lldb-commits < lldb-commits@lists.llvm.org> wrote: > ovyalov created this revision. > ovyalov added a reviewer: clayborg. > ovyalov added a subscriber: lldb-commits. > >

Re: [llvm-bugs] Change to list permissions/announce only

2015-11-22 Thread David Blaikie via llvm-bugs
ng mails coming directly to llvm-bugs - not sure where people have been getting the notion to email it directly) On Sat, Nov 21, 2015 at 8:20 AM, Tanya Lattner via llvm-bugs < llvm-bugs@lists.llvm.org> wrote: > All, > > I plan to make the llvm-bugs announce-only (by bugzilla only

Re: [llvm-bugs] [Bug 25616] New: bug

2015-12-09 Thread Tanya Lattner via llvm-bugs
ugzilla Admin >> Version unspecified >> Hardware PC >> OS Windows NT >> Status NEW >> Severity normal >> Priority P >> ComponentMail >> Assignee unassignedb...@nondot.org >> Reporter jerromelic...@yahoo.

[llvm-bugs] [Bug 26230] New: LLDB generates superfluous "running" public events

2016-01-21 Thread via llvm-bugs
ty: normal Priority: P Component: All Bugs Assignee: lldb-...@lists.llvm.org Reporter: lab...@google.com CC: llvm-bugs@lists.llvm.org Classification: Unclassified LLDB generates the following sequence of public events when stepping over a c

[llvm-branch-commits] [llvm] d551e40 - [AIX] Change the code based on https://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20201214/864235.html

2020-12-18 Thread via llvm-branch-commits
LOG: [AIX] Change the code based on https://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20201214/864235.html Summary: change the code based on the discussion as: https://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20201214/864235.html Added: Modified: llvm/lib/Target

Re: [lldb-dev] Two CLs requiring changes to the Xcode project

2015-11-12 Thread Zachary Turner via lldb-dev
15, at 5:39 PM, Zachary Turner via lldb-dev < > lldb-dev@lists.llvm.org> wrote: > > > > Hi all, > > > > I submitted r252993 and 252994. These changes will require a > corresponding change in the Xcode workspace. Would anyone mind making > those changes for me?

Re: [lldb-dev] [cfe-dev] lists.llvm.org server maintenance, Friday Dec 18 @10:30 PST

2015-12-19 Thread John Criswell via lldb-dev
___ cfe-dev mailing list cfe-...@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev -- John Criswell Assistant Professor Department of Computer Science, University of Rochester http://www.cs.rochester.edu/u/criswell

[lldb-dev] [Bug 26230] New: LLDB generates superfluous "running" public events

2016-01-21 Thread via lldb-dev
ty: normal Priority: P Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: lab...@google.com CC: llvm-b...@lists.llvm.org Classification: Unclassified LLDB generates the following sequence of public events when stepping over a c

Re: [lldb-dev] All windows Mutex objects are recursive???

2016-05-11 Thread Zachary Turner via lldb-dev
Yes, eventually we should move to std::mutex and std::condition_variable, in which case it behaves as expected (std::mutex is non recursive, std::mutex is recursive). On Wed, May 11, 2016 at 2:20 PM Greg Clayton via lldb-dev < lldb-dev@lists.llvm.org> wrote: > From lldb/source/Hos

Re: [lldb-dev] compile failure with VS 2015 Update 3

2016-06-30 Thread Adrian McCarthy via lldb-dev
Compiling for 32-bit or 64-bit? This question looks relevant: http://stackoverflow.com/questions/21743144/using-stdatomic-with-aligned-classes On Thu, Jun 30, 2016 at 1:19 PM, Philippe Lavoie via lldb-dev < lldb-dev@lists.llvm.org> wrote: > Hello, > > has anyone tried to co

<    5   6   7   8   9   10   11   12   13   14   >