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


Re: [PATCH] D19959: [scan-build] fix warning emitted on Clang Driver code baseFix a "logic error" warning of the type Called c++ object pointer isnull" reported by Clang Static Analyzer on the file:-

2016-05-05 Thread David Blaikie via cfe-commits
Should this be a test, or just an assertion? On Thu, May 5, 2016 at 2:34 AM, Apelete Seketeli via cfe-commits < cfe-commits@lists.llvm.org> wrote: > apelete created this revision. > apelete added reviewers: kevin.qin, rsmith. > apelete added a subscriber: cfe-commits. > > S

Re: r273950 -

2016-06-27 Thread Nico Weber via cfe-commits
Did you land this intentionally? What was the commit message supposed to be? On Mon, Jun 27, 2016 at 6:11 PM, Chris Dewhurst via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Author: lerochris > Date: Mon Jun 27 17:11:12 2016 > New Revision: 273950 > > URL: http:/

Re: [PATCH] D17741: adds __FILE_BASENAME__ builtin macro

2016-03-01 Thread Sean Silva via cfe-commits
On Tue, Mar 1, 2016 at 10:54 AM, Nico Weber via cfe-commits < cfe-commits@lists.llvm.org> wrote: > thakis added a comment. > > > I think we can do this separately. A "basename" macro is easier for > programmers to use and no build system change needed. > > &

Re: [PATCH] D17983: Eliminate many benign instances of "potentially uninitialized local variable" warnings

2016-03-09 Thread David Blaikie via cfe-commits
On Wed, Mar 9, 2016 at 12:06 PM, Alexander Riccio via cfe-commits < cfe-commits@lists.llvm.org> wrote: > ariccio added a comment. > > Oh, and by the way, what's the policy on using `enum class`es instead of C > style enums? I bet the compiler would have fewer false positive

Re: [PATCH] D15421: [Feature] Add a builtin for indexing into parameter packs

2016-01-13 Thread Arthur O'Dwyer via cfe-commits
Following Louis' suggestion, how about __pack_nth? On Wed, Jan 13, 2016 at 3:16 PM, Nathan Wilson via cfe-commits < cfe-commits@lists.llvm.org> wrote: > > > On Wed, Jan 13, 2016 at 4:52 PM, Richard Smith > wrote: > >> On Wed, Jan 13, 2016 at 2:31 PM, Nathan

Re: r254143 - Fix for merging decls in pragma weak

2015-12-03 Thread Alexander Kornienko via cfe-commits
I've reverted the commit in r254605. On Thu, Dec 3, 2015 at 11:20 AM, Alexander Kornienko wrote: > Please fix or revert this patch. > > On Wed, Dec 2, 2015 at 6:07 PM, Joerg Sonnenberger via cfe-commits < > cfe-commits@lists.llvm.org> wrote: > >> On Thu,

Re: r254574 - PR17381: Treat undefined behavior during expression evaluation as an unmodeled

2015-12-08 Thread Richard Smith via cfe-commits
On Tue, Dec 8, 2015 at 2:13 AM, Joerg Sonnenberger via cfe-commits < cfe-commits@lists.llvm.org> wrote: > On Mon, Dec 07, 2015 at 01:32:14PM -0800, Richard Smith via cfe-commits > wrote: > > C11 6.3.1.5/1: "If the value being converted is outside the range of > values &

Re: [PATCH]: git-clang-format

2015-12-11 Thread Manuel Klimek via cfe-commits
+djasper On Fri, Dec 11, 2015 at 3:40 PM Alexander Shukaev via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Hello everyone, > > Please, consider applying the attached patch or (at your option) a > refined version of it upstream. I'd be very excited to see it make

Re: [PATCH] D15506: [ASTMatchers] Allow hasName() to look through inline namespaces

2015-12-14 Thread Yaron Keren via cfe-commits
MSVC 2013 Update 5 accepts for (bool SkipUnwritten : {false, true}). Possibly changed in one of the Updates? 2015-12-14 23:35 GMT+02:00 Aaron Ballman via cfe-commits < cfe-commits@lists.llvm.org>: > aaron.ballman added a subscriber: aaron.ballman. > > &g

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

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

Re: [PATCH] D15584: [CMake] Support a simple case for bootstrap builds to generate PGO data

2015-12-18 Thread Chandler Carruth via cfe-commits
Uh, did you intend to commit this prior to Justin or others giving an LGTM? On Fri, Dec 18, 2015 at 4:59 PM Phabricator via cfe-commits < cfe-commits@lists.llvm.org> wrote: > This revision was automatically updated to reflect the committed changes. > Closed by commit rL256069: [CMak

Re: [cfe-users] finding in which function/method/scope a Decl is in, the parent so to say

2016-11-11 Thread Richard Trieu via cfe-users
function/method scope. DeclContext can also be cast to other Decl types, so for example you could use dyn_cast to get the function scope. On Fri, Nov 11, 2016 at 4:06 AM, folkert via cfe-users < cfe-users@lists.llvm.org> wrote: > Hi, > > How can I find the parent of a VarDecl? The

Re: [cfe-users] Syncing up clang and clang-tools-extra with llvm for git

2018-03-12 Thread David Blaikie via cfe-users
+Adrian for questions about dsymutil. Though I'm not quite sure how the subject line relates to the question? On Thu, Mar 8, 2018 at 7:03 PM Michael Eisel via cfe-users < cfe-users@lists.llvm.org> wrote: > Hi, > > I'm hitting some segfault when I run dsymutil without an

Re: [cfe-users] Getting underlying type for `using typename` declaration

2019-07-22 Thread Richard Smith via cfe-users
On Wed, 17 Jul 2019 at 23:20, Victor “LOST” Milovanov via cfe-users < cfe-users@lists.llvm.org> wrote: > Hi CFE users! > > > > I am trying to get a `QualType` instance from > `UnresolvedUsingTypenameDecl`. Unlike `TypeAliasDecl` > `UnresolvedUsingTypenameDecl` does no

Re: [cfe-users] constexpr pointer-to-member-function broken in Clang 9?

2019-10-02 Thread Richard Smith via cfe-users
On Tue, 1 Oct 2019 at 10:42, Michael Price - Dev via cfe-users < cfe-users@lists.llvm.org> wrote: > Should this be ill-formed? > > struct C { > constexpr C() {} > constexpr bool f() const { return true; } > }; > constexpr C c{}; > > constexpr bool fail

Re: [cfe-users] Template parameter matcher?

2020-06-24 Thread Richard Smith via cfe-users
< cfe-users@lists.llvm.org> wrote: > I'm looking for a matcher for variables whose type is a template > parameter. For example: > > template > T tVal; // Match tVal > int func(T tParam); // Match tParam > int i = func(tVal); // Match tVal

Re: [Lldb-commits] [PATCH] D13241: [LLDB][MIPS] Fix hit_count for mips watchpoints

2015-09-29 Thread Zachary Turner via lldb-commits
Can you add a test for this? On Tue, Sep 29, 2015 at 5:41 PM Jason Molenda via lldb-commits < lldb-commits@lists.llvm.org> wrote: > jasonmolenda added a subscriber: jasonmolenda. > jasonmolenda added a comment. > > Greg's out this week, he or Jim may want to comment. >

Re: [Lldb-commits] [PATCH] D14790: cmake: add -DLLDB_ALLOW_STATIC_BINDINGS=1, defaults off

2015-11-18 Thread Zachary Turner via lldb-commits
zturner added a comment. Kamil, the situation is a little complicated, please read the following threads for some context: http://lists.llvm.org/pipermail/lldb-dev/2015-November/008802.html http://lists.llvm.org/pipermail/lldb-dev/2015-November/008829.html http://lists.llvm.org/pipermail/lldb

Re: [Lldb-commits] [PATCH] Updated documentation for SBAddress

2016-06-17 Thread Tamas Berghammer via lldb-commits
Can you upload the patch to http://reviews.llvm.org/differential/ (we do all of the code review there)? On Fri, Jun 10, 2016 at 6:08 PM John Lindal via lldb-commits < lldb-commits@lists.llvm.org> wrote: > I never heard back on this. Should I file a ticket? > > Thanks, > John

[llvm-bugs] [Bug 28237] New: Debian mipsel package does not build

2016-06-21 Thread via llvm-bugs
Priority: P Component: new bugs Assignee: unassignedb...@nondot.org Reporter: daniel.sand...@imgtec.com CC: llvm-bugs@lists.llvm.org Classification: Unclassified See: https://buildd.debian.org/status/fetch.php?pkg=llvm-toolchain-3.8&arch=mipsel&a

[llvm-bugs] [Bug 27438] New: EfficiencySanitizer tool ideas

2016-04-20 Thread via llvm-bugs
Priority: P Component: compiler-rt Assignee: bruen...@google.com Reporter: bruen...@google.com CC: llvm-bugs@lists.llvm.org Classification: Unclassified This is a container feature request to serve as a venue for submitting ideas for dynamic

Re: [lldb-dev] Benchmark tests

2015-12-09 Thread Todd Fiala via lldb-dev
Hey Jason, Are you the benchmark user? -Todd On Wed, Dec 9, 2015 at 12:32 PM, Zachary Turner via lldb-dev < lldb-dev@lists.llvm.org> wrote: > Is anyone using the benchmark tests? None of the command line options > <https://docs.google.com

Re: [lldb-dev] [3.8 Release] 'final' has been tagged

2016-03-07 Thread Renato Golin via lldb-dev
gt; Many thanks for all your work! > Hans > > [1]. > http://lists.llvm.org/pipermail/llvm-branch-commits/2016-March/009883.html > _______ > lldb-dev mailing list > lldb-dev@lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listi

Re: [lldb-dev] [cfe-dev] [Attn: Bot Owners!] Raising CMake minimum version to 3.4.3

2016-05-24 Thread Eric Fiselier via lldb-dev
Upgraded the libc++ bots. On Tue, May 24, 2016 at 2:54 PM, Chris Bieneman via cfe-dev < cfe-...@lists.llvm.org> wrote: > Meant to send this yesterday, but I want to remind everyone that we’re > going to be raising the CMake minimum version to 3.4.3 next week. > > If you ma

Re: [lldb-dev] [cfe-dev] [3.9 Release] Please write release notes!

2016-08-04 Thread George Burgess IV via lldb-dev
Added MSSA note in r277739. Thanks for the heads up! On Aug 3, 2016 9:55 PM, "Dmitry Polukhin via cfe-dev" < cfe-...@lists.llvm.org> wrote: > Renato, > > Thank you for the summary of abi_tags changes for the release notes. I > think everything is correct.

Re: [lldb-dev] LLDB Evolution: Next Phase

2016-08-23 Thread Zachary Turner via lldb-dev
Should we consider adding git hyper-blame to llvm and recommending its usage? https://commondatastorage.googleapis.com/chrome-infra-docs/flat/depot_tools/docs/html/git-hyper-blame.html On Tue, Aug 23, 2016 at 6:44 AM Ed Maste via lldb-dev < lldb-dev@lists.llvm.org> wrote: > On 19 Augus

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

2016-09-21 Thread Zachary Turner via lldb-dev
vista. On Wed, Sep 21, 2016 at 8:22 PM Chunseok Lee via lldb-dev < lldb-dev@lists.llvm.org> wrote: > Is there any prebuilt lldb binary for windows7? > I tried snapshot llvm binary 3.8, but it does not include lldb. Note that > latest prebuilt(4.0) contains lldb

Re: [lldb-dev] unaligned cast in TCPSocket::Connect

2016-10-13 Thread Zachary Turner via lldb-dev
I believe you are correct. We should create an in_addr on the stack and memcpy into it. On Thu, Oct 13, 2016 at 10:52 AM Ted Woodward via lldb-dev < lldb-dev@lists.llvm.org> wrote: > TCPSocket::Connect has this line: > > host_str = ::inet_ntoa (*(struct in_addr

Re: [lldb-dev] [llvm-dev] FYI, Phabricator is really slow due to HN about LLD

2017-02-17 Thread Chandler Carruth via lldb-dev
Have they come back? the instance appeared to reboot cleanly and the pages are serving... I'll dig into this in a couple of hours when I can. On Fri, Feb 17, 2017 at 1:37 PM Alex Bradbury via llvm-dev < llvm-...@lists.llvm.org> wrote: > On 17 February 2017 at 19:23, Chandler Carrut

Re: [lldb-dev] [Release-testers] [4.0.0 Release] 'final' has been tagged

2017-03-09 Thread Bernhard Rosenkränzer via lldb-dev
Hi, built and passed core tests on OpenMandriva x86_64, aarch64, x86_32 and armv7hl. ttyl bero On 9 March 2017 at 01:52, Hans Wennborg via Release-testers < release-test...@lists.llvm.org> wrote: > Dear testers, > > The final version of 4.0.0 was just tagged (from the 4.0 bran

Re: [lldb-dev] Emacs LLDB support & the GDB/MI Interface

2017-08-06 Thread Ilia K via lldb-dev
You are probably got it but yes, -file-list-exec-source-files and -break-list commands are not implemented yet. I'll try to find the time to fix it. On Mon, Jul 31, 2017 at 9:44 PM, Eli Zaretskii via lldb-dev < lldb-dev@lists.llvm.org> wrote: > > From: "Ted Woodward"

Re: [lldb-dev] [Release-testers] [6.0.0 Release] Release Candidate 3 tagged

2018-02-23 Thread Brian Cain via lldb-dev
SLES11 binaries for rc3 uploaded. 55b63de8adc12c67eb11abcf1a5f7132cca59b4e clang+llvm-6.0.0-rc3-x86_64-linux-sles11.3.tar.xz On Fri, Feb 23, 2018 at 9:14 AM, Hans Wennborg via Release-testers < release-test...@lists.llvm.org> wrote: > Dear testers, > > 6.0.0-rc3 was just tagged

Re: [lldb-dev] [GSoC] Re-implement lldb-mi on top of the LLDB public API

2018-08-13 Thread Александр Поляков via lldb-dev
Thank you, Leonard, I'm going to keep contributing to LLVM, so I think this is not the end! On Mon, Aug 13, 2018 at 8:15 PM Leonard Mosescu wrote: > Nice to see great progress in this area! > > On Sun, Aug 12, 2018 at 2:49 PM, Александр Поляков via lldb-dev < > lldb-dev@l

Re: [lldb-dev] [Release-testers] [8.0.0 Release] rc2 has been tagged

2019-02-09 Thread Brian Cain via lldb-dev
release-test...@lists.llvm.org> wrote: > Dear testers, > > 8.0.0-rc2 has been tagged from the release_80 branch at r353413. > > Please run the test script, share your results, and upload binaries. > > I'll get the source tarballs and docs published as soon as possibl

Re: [lldb-dev] [Release-testers] 8.0.1-final has been tagged

2019-07-23 Thread Brian Cain via lldb-dev
M Tom Stellard via Release-testers < > release-test...@lists.llvm.org> wrote: > >> Hi, >> >> The 8.0.1 final release has been tagged. Testers please upload the final >> binaries. >> >> -Tom >> ___ &g

Re: [lldb-dev] LLDB Website is not being updated

2019-11-21 Thread Jonas Devlieghere via lldb-dev
I see a bunch of eros here: http://lists.llvm.org/pipermail/www-scripts/2019-November/thread.html Is this possibly related to the Github/monorepo transition? -- Jonas On Thu, Nov 21, 2019 at 10:52 AM Adrian Prantl via lldb-dev wrote: > > Hello Tanya, > > it looks like the cron

Re: [lldb-dev] [Release-testers] 10.0.1-rc4 tagged

2020-07-09 Thread Brian Cain via lldb-dev
ase-test...@lists.llvm.org> wrote: > Hi, > > I've tagged 10.0.1-rc4, please test and report the results. > > -Tom > > ___ > Release-testers mailing list > release-test...@lists.llvm.org > https://lists.llvm.org/cgi-bin/m

Re: [lldb-dev] [Release-testers] LLVM 11.0.1-rc2 has been tagged

2020-12-23 Thread Ahsan Saghir via lldb-dev
Hi, I finished testing llvm-11.0.1-rc2 on Power PC 64-bit Little Endian for - Ubuntu 18.04 - Red Hat 7.4 I have uploaded the binaries from IBM. The sha1 files are attached. Thanks, Ahsan Saghir. On Sat, 19 Dec 2020 at 01:33, Tom Stellard via Release-testers < release-test...@lists.llvm.

Re: [lldb-dev] [Release-testers] LLVM 12.0.0-rc3 has been tagged

2021-03-11 Thread Brian Cain via lldb-dev
x27;s not as helpful for me to offer feedback this late in the release cycle. On Wed, Mar 10, 2021 at 9:11 AM Tom Stellard via Release-testers < release-test...@lists.llvm.org> wrote: > Hi, > > I've tagged LLVM 12.0.0-rc3. Testers may begin testing and uploading > binaries. &

Re: [lldb-dev] [Release-testers] 13.0.0-rc3 has been tagged

2021-09-16 Thread Diana Picus via lldb-dev
< release-test...@lists.llvm.org> wrote: > Hi, > > I've tagged 13.0.0-rc3. This will likely be the last rc unless there are > critical bugs that are found. Please test the release and report results. > > -Tom > > ___ > Release-

Re: [lldb-dev] [cfe-dev] Release 13.0.1-rc1 has been tagged

2021-12-02 Thread Diana Picus via lldb-dev
inux-gnueabihf.tar.xz 5c363a8e145e4b9985403aa89f496c550ff68423febd350d2a70c0f993b00b29 LLVM-13.0.1-rc1-woa64.zip Same test results as 13.0.0. Cheers, Diana On Tue, 30 Nov 2021 at 07:07, Tom Stellard via cfe-dev < cfe-...@lists.llvm.org> wrote: > Hi, > > I've tagged 13.0.1-rc1. Teste

Re: Patch bug 27628

2017-09-08 Thread Krzysztof Parzyszek via cfe-commits
mmits mailing list llvm-comm...@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation ___ cfe-commits mailing list cfe-co

Re: [PATCH] D34728: [ThinkLTO] Invoke build(Thin)?LTOPreLinkDefaultPipeline.

2017-06-29 Thread Chandler Carruth via cfe-commits
pository: > rL LLVM > > https://reviews.llvm.org/D34728 > > > > ___ > llvm-commits mailing list > llvm-comm...@lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits > __

Re: [PATCH] D34992: Emit static constexpr member as available_externally definition

2017-07-05 Thread David Majnemer via cfe-commits
_bug.cgi?id=31860 . > > > https://reviews.llvm.org/D34992 > > > > ___ > cfe-commits mailing list > cfe-commits@lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits > __

Re: [PATCH] D42157: [clang-cl] Let /FA output use intel assembly.

2018-01-17 Thread Yvan Roux via cfe-commits
n > > https://reviews.llvm.org/D42157 > > > > ___ > cfe-commits mailing list > cfe-commits@lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits ___ cfe-commits maili

Re: [PATCH] D30768: [PATCH][VFS] Ignore broken symlinks in the directory iterator.

2017-03-10 Thread Eric Christopher via cfe-commits
s://reviews.llvm.org/D30768 > > > > ___ > cfe-commits mailing list > cfe-commits@lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits > ___ cfe-commits mailing list cfe-commits@lists.llvm

Re: [PATCH] Canonicalize UnaryTransformType types when they don't have a known underlying type

2016-02-24 Thread Vassil Vassilev via cfe-commits
___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman

Re: r257533 - D9600: Add scan-build python implementation

2016-01-12 Thread Jonathan Roelofs via cfe-commits
Yay! ___ cfe-commits mailing list cfe-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits -- Jon Roelofs jonat...@codesourcery.com CodeSourcery / Mentor Embedded ___ cfe-commits mailing list cfe-commits@lists.llvm.org

Re: [PATCH] D12834: add gcc abi_tag support

2015-12-09 Thread Stephan Bergmann via cfe-commits
sberg added a subscriber: sberg. sberg added a comment. I can't figure out how to add code to someone else's Phabricator review, so sent it to the mailing list instead: <http://lists.llvm.org/pipermail/cfe-commits/Week-of-Mon-20151207/144636.html> <http://lists.llvm.org/pi

Re: [cfe-users] __builtin_constant_p(), __builtin_expect() and __builtin_types_compatible_p() and __has_builtin()

2019-08-09 Thread Matthew Fernandez via cfe-users
iltin_types_compatible_p() ! > > Can I just assume these are all supported by all version of clang ? > > Chris > ___ > cfe-users mailing list > cfe-users@lists.llvm.org > https://l

Re: [Lldb-commits] [PATCH] D34911: Enable parsing C++ names generated by lambda functions.

2017-07-13 Thread Jim Ingham via lldb-commits
https://reviews.llvm.org/D34911 > > > > ___ > lldb-commits mailing list > lldb-commits@lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits ___ lldb-commits mailing list lldb-commits@lists.ll

[llvm-bugs] [Bug 30969] New: Merge r283728 into 3.9 branch.

2016-11-09 Thread via llvm-bugs
Component: All Bugs Assignee: lldb-...@lists.llvm.org Reporter: nitesh.j...@imgtec.com CC: llvm-bugs@lists.llvm.org Blocks: 30261 Classification: Unclassified -- You are receiving this mail because: You are on the CC list for the bug

[llvm-bugs] [Bug 30970] New: Merge r283729 into 3.9 branch

2016-11-09 Thread via llvm-bugs
Component: All Bugs Assignee: lldb-...@lists.llvm.org Reporter: nitesh.j...@imgtec.com CC: llvm-bugs@lists.llvm.org, tstel...@gmail.com Blocks: 30261 Classification: Unclassified -- You are receiving this mail because: You are on the CC list

[llvm-bugs] [Bug 30971] New: Merge r284003 into 3.9 branch

2016-11-09 Thread via llvm-bugs
Component: All Bugs Assignee: lldb-...@lists.llvm.org Reporter: nitesh.j...@imgtec.com CC: llvm-bugs@lists.llvm.org, tstel...@gmail.com Blocks: 30261 Classification: Unclassified -- You are receiving this mail because: You are on the CC list

[llvm-bugs] [Bug 30972] New: Merge r284001 into 3.9 branch

2016-11-09 Thread via llvm-bugs
Component: All Bugs Assignee: lldb-...@lists.llvm.org Reporter: nitesh.j...@imgtec.com CC: llvm-bugs@lists.llvm.org, tstel...@gmail.com Blocks: 30261 Classification: Unclassified -- You are receiving this mail because: You are on the CC list

[llvm-bugs] [Bug 25300] New: Certain environment variables crash lldb-server

2015-10-23 Thread via llvm-bugs
Priority: P Component: All Bugs Assignee: lldb-...@lists.llvm.org Reporter: bob.eric.nel...@gmail.com CC: llvm-bugs@lists.llvm.org Classification: Unclassified -- You are receiving this mail because: You are on the CC list for the bug

[llvm-bugs] [Bug 39727] New: Support for breakpad symbols in LLDB

2018-11-20 Thread via llvm-bugs
Priority: P Component: All Bugs Assignee: lldb-...@lists.llvm.org Reporter: d...@google.com CC: llvm-bugs@lists.llvm.org, mose...@google.com LLDB should be able to consume breakpad symbols. -- You are receiving this mail because: You are on the CC list

[llvm-bugs] [Bug 36595] New: Pathname expansion fails as argument to process launch

2018-03-04 Thread via llvm-bugs
Severity: normal Priority: P Component: All Bugs Assignee: lldb-...@lists.llvm.org Reporter: t.william.schm...@gmail.com CC: llvm-bugs@lists.llvm.org -- You are receiving this mail because: You are on the CC list for the bug

[llvm-bugs] [Bug 26677] New: LLDB does not report Linux signal 35 (SIGRTMIN+1)

2016-02-19 Thread via llvm-bugs
Priority: P Component: All Bugs Assignee: lldb-...@lists.llvm.org Reporter: eugen...@hotmail.com CC: llvm-bugs@lists.llvm.org Classification: Unclassified -- You are receiving this mail because: You are on the CC list for the bug

[llvm-bugs] [Bug 27510] New: TestBitfields fails on linux with clang>=3.9

2016-04-25 Thread via llvm-bugs
mal Priority: P Component: All Bugs Assignee: lldb-...@lists.llvm.org Reporter: lab...@google.com CC: llvm-bugs@lists.llvm.org Classification: Unclassified -- You are receiving this mail because: You are on the CC list for the

[lldb-dev] [Bug 26677] New: LLDB does not report Linux signal 35 (SIGRTMIN+1)

2016-02-19 Thread via lldb-dev
Priority: P Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: eugen...@hotmail.com CC: llvm-b...@lists.llvm.org Classification: Unclassified -- You are receiving this mail because: You are the assignee for the bug

[lldb-dev] [Bug 27075] New: TestLldbGdbServer.software_breakpoint_set_and_remove_work fails on android arm with -mthumb

2016-03-25 Thread via lldb-dev
OS: Linux Status: NEW Severity: normal Priority: P Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: chy...@google.com CC: llvm-b...@lists.llvm.org Classification: Unclassified xfail

[lldb-dev] [Bug 27510] New: TestBitfields fails on linux with clang>=3.9

2016-04-25 Thread via lldb-dev
mal Priority: P Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: lab...@google.com CC: llvm-b...@lists.llvm.org Classification: Unclassified -- You are receiving this mail because: You are the assignee for the

Re: [lldb-dev] [IMPORTANT] bugzilla email notification enabled

2016-08-29 Thread Tanya Lattner via lldb-dev
FYI, email notification is re-enabled for bugzilla. Please note that user self-registration is still disabled for now and you should email llvm-ad...@lists.llvm.org <mailto:llvm-ad...@lists.llvm.org> for account creation. Thanks, Tanya > On Aug 29, 2016, at 11:59 AM, Tanya Lattn

Re: [lldb-dev] NetBSD buildbot new machine

2016-10-05 Thread Kamil Rytarowski via lldb-dev
arily unavailable. > > > > ___ > lldb-dev mailing list > lldb-dev@lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev > signature.asc Description: OpenPGP digital signature ___ lldb

[lldb-dev] [Bug 30970] New: Merge r283729 into 3.9 branch

2016-11-09 Thread via lldb-dev
Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: nitesh.j...@imgtec.com CC: llvm-b...@lists.llvm.org, tstel...@gmail.com Blocks: 30261 Classification: Unclassified -- You are receiving this mail because: You are the assignee for

[lldb-dev] [Bug 30971] New: Merge r284003 into 3.9 branch

2016-11-09 Thread via lldb-dev
Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: nitesh.j...@imgtec.com CC: llvm-b...@lists.llvm.org, tstel...@gmail.com Blocks: 30261 Classification: Unclassified -- You are receiving this mail because: You are the assignee for

[lldb-dev] [Bug 30972] New: Merge r284001 into 3.9 branch

2016-11-09 Thread via lldb-dev
Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: nitesh.j...@imgtec.com CC: llvm-b...@lists.llvm.org, tstel...@gmail.com Blocks: 30261 Classification: Unclassified -- You are receiving this mail because: You are the assignee for

[lldb-dev] [Bug 34419] New: TopLevelExpressionsTestCase-test_top_level_expressions_dwarf fails on fedora

2017-09-01 Thread via lldb-dev
Status: NEW Severity: enhancement Priority: P Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: dav...@freebsd.org CC: llvm-b...@lists.llvm.org It took me quite a bit to reproduce, the log is attached. -- You

[lldb-dev] [Bug 36595] New: Pathname expansion fails as argument to process launch

2018-03-04 Thread via lldb-dev
Severity: normal Priority: P Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: t.william.schm...@gmail.com CC: llvm-b...@lists.llvm.org -- You are receiving this mail because: You are the assignee for the bug

Re: [lldb-dev] Moderator needed for lldb-commits

2018-07-09 Thread Jonas Devlieghere via lldb-dev
out? > > Thanks, > Tanya > ___ > lldb-dev mailing list > lldb-dev@lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev ___ lldb-dev mailing list lldb-dev@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev

[lldb-dev] [Bug 39727] New: Support for breakpad symbols in LLDB

2018-11-20 Thread via lldb-dev
Priority: P Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: d...@google.com CC: llvm-b...@lists.llvm.org, mose...@google.com LLDB should be able to consume breakpad symbols. -- You are receiving this mail because: You are the assignee

Re: [lldb-dev] [Release-testers] LLVM 7.1.0-final has been tagged

2019-04-15 Thread Diana Picus via lldb-dev
0-final. Testers, please upload the final binaries. > > Thanks, > Tom > ___ > Release-testers mailing list > release-test...@lists.llvm.org > https://lists.llvm.org/cgi-bin/mailman/listinfo/release-testers ___

Re: [lldb-dev] [cfe-dev] LLVM 11.1.0-final has been tagged.

2021-02-18 Thread Hans Wennborg via lldb-dev
: > > Hi, > > I've tagged 11.1.0-final, testers may begin uploading binaries now. > > -Tom > > ___ > cfe-dev mailing list > cfe-...@lists.llvm.org > https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev build_llvm_111

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

2015-08-12 Thread Jim Ingham via lldb-dev
; macro. (Gasp!) > > ___ > lldb-dev mailing list > lldb-dev@lists.llvm.org > http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-dev ___ lldb-dev mailing list lldb-dev@lists.llvm.org http://

[lldb-dev] [Bug 25300] New: Certain environment variables crash lldb-server

2015-10-23 Thread via lldb-dev
Priority: P Component: All Bugs Assignee: lldb-dev@lists.llvm.org Reporter: bob.eric.nel...@gmail.com CC: llvm-b...@lists.llvm.org Classification: Unclassified -- You are receiving this mail because: You are the assignee for the bug

[llvm-branch-commits] [clang][CallGraphSection] Add type id metadata to indirect call and targets (PR #117036)

2024-11-20 Thread via llvm-branch-commits
https://github.com/Prabhuk created https://github.com/llvm/llvm-project/pull/117036 Create and add generalized type identifier metadata to indirect calls, and to functions that may be target to indirect calls. Original RFC: https://lists.llvm.org/pipermail/llvm-dev/2021-June/151044.html

Re: r253269 - Make FP_CONTRACT ON the default.

2016-09-06 Thread Hal Finkel via cfe-commits
Operations with multiple uses shouldn't be contracted." > > > Don't have a small repro yet :( > > > On Tue, Nov 17, 2015 at 1:39 PM Hal Finkel via cfe-commits < > cfe-commits@lists.llvm.org > wrote: > > > - Original Message - > &

Re: Add warning for c++ member variable shadowing

2017-01-24 Thread James Sun via cfe-commits
if we call A.bases() directly. Thanks James From: Saleem Abdulrasool Date: Tuesday, January 24, 2017 at 7:10 PM To: James Sun Cc: "cfe-commits@lists.llvm.org" , Aaron Ballman , Richard Smith Subject: Re: Add warning for c++ member variable shadowing Some more stylistic

RE: r296554 - [PS4] Set our default dialect to C++11. NFC for other targets.

2017-03-01 Thread Robinson, Paul via cfe-commits
7, at 11:22 PM, Sean Silva via cfe-commits mailto:cfe-commits@lists.llvm.org>> wrote: Nice! -- Sean Silva On Tue, Feb 28, 2017 at 5:01 PM, Paul Robinson via cfe-commits mailto:cfe-commits@lists.llvm.org>> wrote: Author: probinson Date: Tue Feb 28 19:01:10 2017 New Revision: 296554

Re: [libcxx] r250319 - [libcxx] Make it drastically simpler to link libc++.

2015-12-30 Thread Nico Weber via cfe-commits
gen_link_script.py is missing a license header. On Thu, Oct 22, 2015 at 5:39 PM, Alexey Samsonov via cfe-commits < cfe-commits@lists.llvm.org> wrote: > Seems to work now, thanks for the quick fix! > > On Thu, Oct 22, 2015 at 1:57 PM, Eric Fiselier wrote: > >> Hi Alex

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

2016-12-02 Thread Dmitry Mikulin via lldb-dev
a single cpp file. If you'll need to group more 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 mailto:lldb-dev@lists.llvm.org>> wrote: Unfortunately you will need to separate them at the director

Re: [lldb-dev] Xcode and Pascal (FPC)

2017-03-16 Thread Robinson, Paul via lldb-dev
e compiler. Another is that FPC does add the indication but LLDB is not looking for it, and always does case-sensitive matching. This would be a bug in LLDB. In either case it seems there is no good workaround. --paulr > -Original Message- > From: lldb-dev [mailto:lldb-dev-boun...@li

RE: r254574 - PR17381: Treat undefined behavior during expression evaluation as an unmodeled

2015-12-09 Thread Robinson, Paul via cfe-commits
@gmail.com [mailto:meta...@gmail.com] On Behalf Of Richard Smith Sent: Wednesday, December 09, 2015 12:43 PM To: Robinson, Paul Cc: Joerg Sonnenberger; cfe-commits (cfe-commits@lists.llvm.org) Subject: Re: r254574 - PR17381: Treat undefined behavior during expression evaluation as an unmodeled On

Re: r326168 - Attempt to fix greendragon bot after r326141

2018-02-26 Thread Shoaib Meenai via cfe-commits
Reid re-committed r326141 this morning (and followed up with r326144), and I don't think either of those have been reverted? From: Zachary Turner Date: Monday, February 26, 2018 at 9:47 PM To: Adam Nemet Cc: Shoaib Meenai , "cfe-commits@lists.llvm.org" , Reid Kleckner Subje

[cfe-users] cfe-users Digest, Vol 54, Issue 4

2017-08-01 Thread via cfe-users
Send cfe-users mailing list submissions to cfe-users@lists.llvm.org To subscribe or unsubscribe via the World Wide Web, visit http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users or, via email, send a message with subject or body 'help' to cfe-users-requ...@lists.llvm.org You can

Re: [lldb-dev] clang::VersionTuple

2018-06-15 Thread Jim Ingham via lldb-dev
the code, >> before I start moving VersionTuple into llvm. >> >> cheers, >> pl >> On Tue, 8 May 2018 at 19:46, Frédéric Riss via lldb-dev < >> lldb-dev@lists.llvm.org> wrote: >> >> >> >>> On May 8, 2018, at 11:37 AM, Greg Cl

Re: [lldb-dev] [cfe-dev] [GitHub] RFC: Enforcing no merge commit policy

2019-03-19 Thread Eric Christopher via lldb-dev
Honestly I'm looking forward to GitHub's interface here. On Tue, Mar 19, 2019, 1:25 PM James Y Knight via lldb-dev < lldb-dev@lists.llvm.org> wrote: > I think we definitely will want to support github PRs, at the very least > as an _option_, even if we continue running/

Re: [libcxx] r249929 - Split out of .

2015-10-28 Thread Michael Zolotukhin via cfe-commits
> want to make sure we get it right. If we can't land it over the weekend I'll > ask Richard to revert while we work on it. > > /Eric > > On Oct 23, 2015 10:13 PM, "Michael Zolotukhin via cfe-commits" > mailto:cfe-commits@lists.llvm.org>> wrote: &g

Re: [llvm-dev] [cfe-dev] Upcoming upgrade of LLVM buildbot

2020-10-09 Thread Andrzej Warzynski via cfe-commits
I updated llvmlibc's to 2.8.4 and that seemed to solve the connection problem: https://github.com/llvm/llvm-project/commit/f60686f35cc89504f3411f49cf16a651a74be6eb Best, Paula Askar On Thu, Oct 8, 2020 at 5:43 AM Andrzej Warzynski via llvm-dev mailto:llvm-...@lis

Re: [llvm-dev] [cfe-dev] Upcoming upgrade of LLVM buildbot

2020-10-09 Thread Galina Kistanova via cfe-commits
> > https://github.com/llvm/llvm-project/commit/f60686f35cc89504f3411f49cf16a651a74be6eb > > > > Best, > > Paula Askar > > > > > > On Thu, Oct 8, 2020 at 5:43 AM Andrzej Warzynski via llvm-dev > > mailto:llvm-...@lists.llvm.org>> wr

Re: r267534 - [MSVC] PR27337: allow static_cast from private base to derived for WTL

2016-04-27 Thread Nico Weber via cfe-commits
Is it needed to parse system headers? In general, we implement things like this if they're needed for system headers but don't otherwise. On Wed, Apr 27, 2016 at 6:19 AM, Dmitry Polukhin via cfe-commits < cfe-commits@lists.llvm.org> wrote: > I added example with 'B*&#x

Re: [lldb-dev] [llvm-dev] [cfe-dev] What version comes after 3.9? (Was: [3.9 Release] Release plan and call for testers)

2016-06-16 Thread Bruce Hoult via lldb-dev
15, 2016 at 7:21 AM, Cristianno Martins via llvm-dev < llvm-...@lists.llvm.org> wrote: > Hello there, > > First, I would like to say that I don't have any strong opinions on this > matter: as mostly an user of LLVM, my basic concern is for me to be able to > identify w

Re: [Lldb-commits] [llvm-dev] [cfe-dev] Upcoming upgrade of LLVM buildbot

2020-10-09 Thread Galina Kistanova via lldb-commits
> > https://github.com/llvm/llvm-project/commit/f60686f35cc89504f3411f49cf16a651a74be6eb > > > > Best, > > Paula Askar > > > > > > On Thu, Oct 8, 2020 at 5:43 AM Andrzej Warzynski via llvm-dev > > mailto:llvm-...@lists.llvm.org>> wr

Re: [Lldb-commits] [llvm-dev] [cfe-dev] Upcoming upgrade of LLVM buildbot

2020-10-12 Thread Andrzej Warzynski via lldb-commits
I updated llvmlibc's to 2.8.4 and that seemed to solve the connection problem: https://github.com/llvm/llvm-project/commit/f60686f35cc89504f3411f49cf16a651a74be6eb Best, Paula Askar On Thu, Oct 8, 2020 at 5:43 AM Andrzej Warzynski via llvm-dev mailto:llvm-...@lis

RE: [PATCH] D51806: [clang-cl] Enable -march

2018-09-10 Thread Alexandre Ganea via cfe-commits
Selvaraj via Phabricator Cc : Alexandre Ganea ; cfe-commits Objet : Re: [PATCH] D51806: [clang-cl] Enable -march On Mon, Sep 10, 2018 at 10:33 AM Hans Wennborg via Phabricator via cfe-commits mailto:cfe-commits@lists.llvm.org>> wrote: hans added a comment. In https://reviews.llvm.org/

Re: r358402 - clang-format vs plugin: Visual Studio 2019 support

2019-04-16 Thread Hans Wennborg via cfe-commits
>> (original) >> +++ cfe/trunk/tools/clang-format-vs/source.extension.vsixmanifest.in Mon Apr >> 15 06:02:03 2019 >> @@ -8,7 +8,7 @@ >> license.txt >> >> >> - >> + >> >> >

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

2020-01-05 Thread Stephen Kelly via cfe-commits
later. On Sun, Jan 5, 2020, 3:32 PM Stephen Kelly via cfe-commits mailto:cfe-commits@lists.llvm.org>> wrote: Author: Stephen Kelly Date: 2020-01-05T20:27:37Z New Revision: 471151238438201f3fe365a7784f1a091328e46c URL: https://github.com/llvm/llvm-pro

RE: r285733 - clang/test/CodeGenOpenCL/convergent.cl: Satisfy -Asserts with "opt -instnamer".

2017-02-07 Thread Anastasia Stulova via cfe-commits
I don't understand why we need this extra step in testing now? Did anything fail? Thanks, Anastasia -Original Message- From: cfe-commits [mailto:cfe-commits-boun...@lists.llvm.org] On Behalf Of NAKAMURA Takumi via cfe-commits Sent: 01 November 2016 20:08 To: cfe-commits@lists.llv

Re: r295592 - clang/CMakeLists.txt: Rework r294954 -- use file(TO_CMAKE_PATH).

2017-02-21 Thread Hans Wennborg via cfe-commits
; >>find_program(LLVM_TABLEGEN_EXE "llvm-tblgen" ${LLVM_TOOLS_BINARY_DIR} >> NO_DEFAULT_PATH) >> >> >> _______ >> cfe-commits mailing list >> cfe-commits@lists.llvm.org >> http://lists.llvm.org/c

<    3   4   5   6   7   8   9   10   11   12   >