https://github.com/zatrazz updated
https://github.com/llvm/llvm-project/pull/79360
>From 240ec1a6b9dda5e6c625e096c52d70eb6458180b Mon Sep 17 00:00:00 2001
From: Adhemerval Zanella
Date: Wed, 24 Jan 2024 16:49:30 -0300
Subject: [PATCH] [X86] Do not end 'note.gnu.property' section with
-fcf-prot
Author: Adhemerval Zanella
Date: 2022-11-08T16:29:35-03:00
New Revision: 9e956995db1fc7e792e3dfb3a465a52626195557
URL:
https://github.com/llvm/llvm-project/commit/9e956995db1fc7e792e3dfb3a465a52626195557
DIFF:
https://github.com/llvm/llvm-project/commit/9e956995db1fc7e792e3dfb3a465a52626195557.
Author: Adhemerval Zanella
Date: 2022-11-08T13:58:37-03:00
New Revision: 92e172309cf6624487ef6b3a79a5445276f9
URL:
https://github.com/llvm/llvm-project/commit/92e172309cf6624487ef6b3a79a5445276f9
DIFF:
https://github.com/llvm/llvm-project/commit/92e172309cf6624487ef6b3a79a5445276f9.
On 05/06/2019 05:19, Michał Górny via Phabricator via llvm-commits wrote:
> This revision was automatically updated to reflect the committed changes.
> Closed by commit rL362587: [clang] [test] Add a (xfailing) test for PR41027
> (authored by mgorny, committed by ).
> Herald added a project: LLVM.
Author: azanella
Date: Tue May 28 14:16:04 2019
New Revision: 361878
URL: http://llvm.org/viewvc/llvm-project?rev=361878&view=rev
Log:
[clang] Handle lrint/llrint builtins
As for other floating-point rounding builtins that can be optimized
when build with -fno-math-errno, this patch adds support
Author: azanella
Date: Thu May 16 06:43:25 2019
New Revision: 360896
URL: http://llvm.org/viewvc/llvm-project?rev=360896&view=rev
Log:
[clang] Handle lround/llround builtins
As for other floating-point rounding builtins that can be optimized
when build with -fno-math-errno, this patch adds suppor
Author: azanella
Date: Tue Aug 23 14:25:12 2016
New Revision: 279552
URL: http://llvm.org/viewvc/llvm-project?rev=279552&view=rev
Log:
libcxx: Fix libcxx tests on aarch64 with libunwind
Some tests uses 'long double' to/from conversions and for some targets
they are provided by compiler runtime (e
zatrazz added a comment.
Ping (x2).
https://reviews.llvm.org/D23420
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
Author: azanella
Date: Mon Aug 15 16:24:50 2016
New Revision: 278745
URL: http://llvm.org/viewvc/llvm-project?rev=278745&view=rev
Log:
libcxx: Fix path.compare.pass expected result
The expected 'filesystem::path::compare' result states that for different
path only result sign contains the informa
zatrazz added a comment.
Ping.
https://reviews.llvm.org/D23420
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
zatrazz added a comment.
Ping.
https://reviews.llvm.org/D23449
___
cfe-commits mailing list
cfe-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
zatrazz updated this revision to Diff 67850.
zatrazz added a comment.
I think patch should be safe now.
https://reviews.llvm.org/D23420
Files:
test/libcxx/test/target_info.py
Index: test/libcxx/test/target_info.py
===
--- test/l
zatrazz added a comment.
In https://reviews.llvm.org/D23420#513824, @jroelofs wrote:
> In https://reviews.llvm.org/D23420#513820, @zatrazz wrote:
>
> > Yes, although in pratice for shared libraries this is not an issue (at
> > least on Linux with current linker strategies). And I open for sugges
zatrazz added a comment.
Yes, although in pratice for shared libraries this is not an issue (at least on
Linux with current linker strategies). And I open for suggestion on how to
proceed in this case since we have some other options:
1. Add the required soft-sp implementations when building fo
zatrazz added a comment.
Yes, but my understaning is the proposed link order will force libc++ to link
against _Unwind* symbols from libunwind (this is what I am observing also).
https://reviews.llvm.org/D23420
___
cfe-commits mailing list
cfe-comm
zatrazz created this revision.
zatrazz added reviewers: jroelofs, danalbert, EricWF.
zatrazz added subscribers: rmaprath, aemerson, rengolin, cfe-commits.
The expected 'filesystem::path::compare' result states that for different
only the sign of result integer contains the information about passed
zatrazz updated this revision to Diff 67835.
zatrazz added a comment.
What about this version? The only difference is for libunwind libgcc is still
included.
https://reviews.llvm.org/D23420
Files:
test/libcxx/test/target_info.py
Index: test/libcxx/test/target_info.py
===
zatrazz added a comment.
I tried to find why exactly libgcc has to appear before and after but I
couldn't get any information from commit history. On my system (aarch64/linux)
I am also getting "-lc++" "-lm" "-lgcc_s" "-lgcc" "-lpthread" "-lc" "-lgcc_s"
"-lgcc".
I think we can got by the safe
zatrazz created this revision.
zatrazz added reviewers: jroelofs, danalbert.
zatrazz added subscribers: rengolin, cfe-commits.
Herald added a subscriber: aemerson.
Some tests uses 'long double' to/from conversions and for some targets
they are provided by compiler runtime (either compiler-rt or li
Author: azanella
Date: Mon Oct 5 14:16:42 2015
New Revision: 249338
URL: http://llvm.org/viewvc/llvm-project?rev=249338&view=rev
Log:
[sanitizer] Enable lsan for AArch64
Modified:
cfe/trunk/lib/Driver/ToolChains.cpp
Modified: cfe/trunk/lib/Driver/ToolChains.cpp
URL:
http://llvm.org/viewvc/
zatrazz created this revision.
zatrazz added reviewers: rengolin, pcc, aemerson, t.p.northover.
zatrazz added a subscriber: cfe-commits.
Herald added subscribers: rengolin, aemerson.
compiler-rt related patch: http://reviews.llvm.org/D13108
http://reviews.llvm.org/D13109
Files:
lib/Driver/Tool
Author: azanella
Date: Wed Sep 16 10:11:21 2015
New Revision: 247808
URL: http://llvm.org/viewvc/llvm-project?rev=247808&view=rev
Log:
[sanitizers] Enable memory sanitizer on clang
This patch enables MSan for aarch64/linux
Modified:
cfe/trunk/lib/Driver/ToolChains.cpp
Modified: cfe/trunk/li
zatrazz created this revision.
zatrazz added reviewers: t.p.northover, aemerson, pcc, rengolin.
zatrazz added a subscriber: cfe-commits.
Herald added subscribers: rengolin, aemerson.
This patch enables MSan for aarch64/linux.
http://reviews.llvm.org/D12708
Files:
lib/Driver/ToolChains.cpp
Ind
23 matches
Mail list logo