https://github.com/ldionne approved this pull request.
`libcxx/` changes LGTM.
https://github.com/llvm/llvm-project/pull/93433
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-
ldionne wrote:
I think this might have been auto-closed cause the `release/17.x` branch still
has the guards in place before the Github PR transition. If this change landed
on `main` and is intended to be cherry-picked to the 17 releases, please follow
the process here:
https://llvm.org/docs/
Author: Michael Platings
Date: 2023-11-29T17:21:08-05:00
New Revision: be811d1617654e46f4f4daa82259ae4fad4c8e6a
URL:
https://github.com/llvm/llvm-project/commit/be811d1617654e46f4f4daa82259ae4fad4c8e6a
DIFF:
https://github.com/llvm/llvm-project/commit/be811d1617654e46f4f4daa82259ae4fad4c8e6a.di
https://github.com/ldionne approved this pull request.
https://github.com/llvm/llvm-project/pull/76659
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne edited
https://github.com/llvm/llvm-project/pull/76246
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -131,13 +138,65 @@ def parseScript(test, preamble):
script += preamble
script += scriptInTest
+has_std_module = False
+has_std_compat_module = False
+for module in modules:
+if module == "std":
+has_std_module = True
+elif mod
@@ -131,13 +138,65 @@ def parseScript(test, preamble):
script += preamble
script += scriptInTest
+has_std_module = False
+has_std_compat_module = False
+for module in modules:
+if module == "std":
+has_std_module = True
+elif mod
https://github.com/ldionne requested changes to this pull request.
This generally looks good to me, but I have some feedback per our live review!
Thanks, this is a great simplification overall.
https://github.com/llvm/llvm-project/pull/76246
___
llvm-
@@ -131,13 +138,65 @@ def parseScript(test, preamble):
script += preamble
script += scriptInTest
+has_std_module = False
+has_std_compat_module = False
+for module in modules:
+if module == "std":
+has_std_module = True
+elif mod
@@ -317,6 +317,18 @@ def _getAndroidDeviceApi(cfg):
AddSubstitution("%{clang-tidy}", lambda cfg:
_getSuitableClangTidy(cfg))
],
),
+# Whether module support for the platform is available.
+Feature(
+name="has-no-module-support",
+
@@ -131,13 +138,65 @@ def parseScript(test, preamble):
script += preamble
script += scriptInTest
+has_std_module = False
+has_std_compat_module = False
+for module in modules:
+if module == "std":
+has_std_module = True
+elif mod
@@ -131,13 +138,65 @@ def parseScript(test, preamble):
script += preamble
script += scriptInTest
+has_std_module = False
+has_std_compat_module = False
+for module in modules:
+if module == "std":
+has_std_module = True
+elif mod
@@ -223,6 +283,12 @@ class CxxStandardLibraryTest(lit.formats.FileBasedTest):
allows adding special compilation flags without having to use a
.sh.cpp test, which would be more powerful but perhaps overkill.
+// MODULE: std std.compat
---
@@ -223,6 +283,12 @@ class CxxStandardLibraryTest(lit.formats.FileBasedTest):
allows adding special compilation flags without having to use a
.sh.cpp test, which would be more powerful but perhaps overkill.
+// MODULE: std std.compat
+
+
@@ -317,6 +317,18 @@ def _getAndroidDeviceApi(cfg):
AddSubstitution("%{clang-tidy}", lambda cfg:
_getSuitableClangTidy(cfg))
],
),
+# Whether module support for the platform is available.
+Feature(
+name="has-no-module-support",
https://github.com/ldionne edited
https://github.com/llvm/llvm-project/pull/76288
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne approved this pull request.
https://github.com/llvm/llvm-project/pull/76288
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne commented:
This generally looks OK to me, but I'd like to see it once the parent patches
have landed.
https://github.com/llvm/llvm-project/pull/76330
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
ht
https://github.com/ldionne approved this pull request.
I guess I don't actually need to see this again if the CI passes once this is
rebased on top of the parent changes.
https://github.com/llvm/llvm-project/pull/76330
___
llvm-branch-commits mailing
@@ -131,13 +138,65 @@ def parseScript(test, preamble):
script += preamble
script += scriptInTest
+has_std_module = False
+has_std_compat_module = False
+for module in modules:
+if module == "std":
+has_std_module = True
+elif mod
https://github.com/ldionne edited
https://github.com/llvm/llvm-project/pull/76246
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne approved this pull request.
LGTM with some comments, thanks!
https://github.com/llvm/llvm-project/pull/76246
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listi
@@ -0,0 +1,24 @@
+//===--===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apac
@@ -0,0 +1,24 @@
+//===--===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apac
@@ -132,13 +154,62 @@ def parseScript(test, preamble):
script += scriptInTest
# Add compile flags specified with ADDITIONAL_COMPILE_FLAGS.
+# Modules need to be build with the same compilation flags as the
+# test. So add these flags before adding the modules.
@@ -132,13 +154,62 @@ def parseScript(test, preamble):
script += scriptInTest
# Add compile flags specified with ADDITIONAL_COMPILE_FLAGS.
+# Modules need to be build with the same compilation flags as the
ldionne wrote:
```suggestion
# Module
@@ -132,13 +154,62 @@ def parseScript(test, preamble):
script += scriptInTest
# Add compile flags specified with ADDITIONAL_COMPILE_FLAGS.
+# Modules need to be build with the same compilation flags as the
+# test. So add these flags before adding the modules.
@@ -52,6 +52,21 @@ def _executeScriptInternal(test, litConfig, commands):
return (out, err, exitCode, timeoutInfo, parsedCommands)
+def _validateModuleDependencies(modules):
+for m in modules:
+if m not in ("std", "std.compat"):
+raise RuntimeError
@@ -0,0 +1,22 @@
+//===--===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apac
@@ -132,13 +154,62 @@ def parseScript(test, preamble):
script += scriptInTest
# Add compile flags specified with ADDITIONAL_COMPILE_FLAGS.
+# Modules need to be build with the same compilation flags as the
+# test. So add these flags before adding the modules.
@@ -132,13 +154,62 @@ def parseScript(test, preamble):
script += scriptInTest
# Add compile flags specified with ADDITIONAL_COMPILE_FLAGS.
+# Modules need to be build with the same compilation flags as the
+# test. So add these flags before adding the modules.
@@ -132,13 +154,62 @@ def parseScript(test, preamble):
script += scriptInTest
# Add compile flags specified with ADDITIONAL_COMPILE_FLAGS.
+# Modules need to be build with the same compilation flags as the
+# test. So add these flags before adding the modules.
@@ -131,13 +138,65 @@ def parseScript(test, preamble):
script += preamble
script += scriptInTest
+has_std_module = False
+has_std_compat_module = False
+for module in modules:
+if module == "std":
+has_std_module = True
+elif mod
@@ -132,13 +154,62 @@ def parseScript(test, preamble):
script += scriptInTest
# Add compile flags specified with ADDITIONAL_COMPILE_FLAGS.
+# Modules need to be build with the same compilation flags as the
+# test. So add these flags before adding the modules.
https://github.com/ldionne edited
https://github.com/llvm/llvm-project/pull/79480
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne edited
https://github.com/llvm/llvm-project/pull/79480
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
ldionne wrote:
This is the official way to do it:
https://llvm.org/docs/GitHub.html#backporting-fixes-to-the-release-branches
@tstellar I do wonder if it wouldn't be simpler to allow people to open PRs
against the release branch instead?
https://github.com/llvm/llvm-project/pull/79480
___
ldionne wrote:
Oh, that's great! Then it looks like this PR is fine as-is.
https://github.com/llvm/llvm-project/pull/79480
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bran
https://github.com/ldionne approved this pull request.
https://github.com/llvm/llvm-project/pull/79480
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne edited
https://github.com/llvm/llvm-project/pull/79480
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne milestoned
https://github.com/llvm/llvm-project/pull/79497
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne edited
https://github.com/llvm/llvm-project/pull/79497
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne created
https://github.com/llvm/llvm-project/pull/79506
We should diff against the base branch, not always against `main`. This allows
the BuildKite pre-commit CI to work properly when we target other branches,
such as `release/18.x`.
(cherry picked from commit 3b76
https://github.com/ldionne updated
https://github.com/llvm/llvm-project/pull/79506
>From fce5c171b463d766cb25208634553a39b94498a6 Mon Sep 17 00:00:00 2001
From: Louis Dionne
Date: Thu, 25 Jan 2024 16:38:53 -0500
Subject: [PATCH 1/2] =?UTF-8?q?[=F0=9F=8D=92][ci]=20Fix=20the=20base=20bra?=
=?UTF
https://github.com/ldionne updated
https://github.com/llvm/llvm-project/pull/79506
>From fce5c171b463d766cb25208634553a39b94498a6 Mon Sep 17 00:00:00 2001
From: Louis Dionne
Date: Thu, 25 Jan 2024 16:38:53 -0500
Subject: [PATCH 1/2] =?UTF-8?q?[=F0=9F=8D=92][ci]=20Fix=20the=20base=20bra?=
=?UTF
https://github.com/ldionne approved this pull request.
https://github.com/llvm/llvm-project/pull/79763
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne approved this pull request.
https://github.com/llvm/llvm-project/pull/80010
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne edited
https://github.com/llvm/llvm-project/pull/94670
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne approved this pull request.
CI failures look like flukes unrelated to the patch (the CI machines got
updated and some tests started XPASSing).
LGTM
https://github.com/llvm/llvm-project/pull/105896
___
llvm-branch-commits ma
https://github.com/ldionne approved this pull request.
https://github.com/llvm/llvm-project/pull/106265
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne approved this pull request.
We saw some breakage internally that is fixed by this patch and that's why I
believe this regression fix is worth cherry-picking.
https://github.com/llvm/llvm-project/pull/106788
___
llvm-branch-c
@@ -56,6 +57,30 @@ _LIBCPP_BEGIN_NAMESPACE_STD
namespace __format {
+// A helper to limit the total size of code units written.
+class _LIBCPP_HIDE_FROM_ABI __max_output_size {
+public:
+ [[nodiscard]] _LIBCPP_HIDE_FROM_ABI explicit __max_output_size(size_t
__max_size) : __
https://github.com/ldionne approved this pull request.
https://github.com/llvm/llvm-project/pull/101831
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne approved this pull request.
https://github.com/llvm/llvm-project/pull/101835
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne approved this pull request.
https://github.com/llvm/llvm-project/pull/108515
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
https://github.com/ldionne edited
https://github.com/llvm/llvm-project/pull/108990
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -319,188 +353,222 @@ struct _LIBCPP_TEMPLATE_VIS
__back_insert_iterator_container
-class _LIBCPP_TEMPLATE_VIS __writer_container {
+// A dynamically growing buffer.
+template <__fmt_char_type _CharT>
+class _LIBCPP_TEMPLATE_VIS __allocating_buffer : public
__output_buffer<_Ch
@@ -53,24 +56,150 @@ _LIBCPP_BEGIN_NAMESPACE_STD
namespace __format {
+// A helper to limit the total size of code units written.
+class _LIBCPP_HIDE_FROM_ABI __max_output_size {
+public:
+ [[nodiscard]] _LIBCPP_HIDE_FROM_ABI explicit __max_output_size(size_t
__max_size) :
https://github.com/ldionne commented:
I have some minor comments but this looks really good!
https://github.com/llvm/llvm-project/pull/108990
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman
@@ -53,24 +56,150 @@ _LIBCPP_BEGIN_NAMESPACE_STD
namespace __format {
+// A helper to limit the total size of code units written.
+class _LIBCPP_HIDE_FROM_ABI __max_output_size {
+public:
+ [[nodiscard]] _LIBCPP_HIDE_FROM_ABI explicit __max_output_size(size_t
__max_size) :
@@ -53,24 +56,150 @@ _LIBCPP_BEGIN_NAMESPACE_STD
namespace __format {
+// A helper to limit the total size of code units written.
+class _LIBCPP_HIDE_FROM_ABI __max_output_size {
+public:
+ [[nodiscard]] _LIBCPP_HIDE_FROM_ABI explicit __max_output_size(size_t
__max_size) :
@@ -53,24 +56,150 @@ _LIBCPP_BEGIN_NAMESPACE_STD
namespace __format {
+// A helper to limit the total size of code units written.
+class _LIBCPP_HIDE_FROM_ABI __max_output_size {
+public:
+ [[nodiscard]] _LIBCPP_HIDE_FROM_ABI explicit __max_output_size(size_t
__max_size) :
https://github.com/ldionne edited
https://github.com/llvm/llvm-project/pull/108990
___
llvm-branch-commits mailing list
llvm-branch-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits
@@ -245,21 +245,11 @@ experimental/simd limits
experimental/utility utility
filesystem compare
filesystem concepts
-filesystem cstddef
ldionne wrote:
These transitive includes should probably not need to change. If they do
change, we should add includes to th
@@ -319,188 +353,222 @@ struct _LIBCPP_TEMPLATE_VIS
__back_insert_iterator_container
-class _LIBCPP_TEMPLATE_VIS __writer_container {
+// A dynamically growing buffer.
+template <__fmt_char_type _CharT>
+class _LIBCPP_TEMPLATE_VIS __allocating_buffer : public
__output_buffer<_Ch
@@ -53,24 +56,150 @@ _LIBCPP_BEGIN_NAMESPACE_STD
namespace __format {
+// A helper to limit the total size of code units written.
+class _LIBCPP_HIDE_FROM_ABI __max_output_size {
+public:
+ [[nodiscard]] _LIBCPP_HIDE_FROM_ABI explicit __max_output_size(size_t
__max_size) :
@@ -319,188 +353,222 @@ struct _LIBCPP_TEMPLATE_VIS
__back_insert_iterator_container
-class _LIBCPP_TEMPLATE_VIS __writer_container {
+// A dynamically growing buffer.
+template <__fmt_char_type _CharT>
+class _LIBCPP_TEMPLATE_VIS __allocating_buffer : public
__output_buffer<_Ch
Author: Ruslan Arutyunyan
Date: 2021-01-25T11:14:45-05:00
New Revision: 51faba35fd81fbd3af407a29c136895a718ccd96
URL:
https://github.com/llvm/llvm-project/commit/51faba35fd81fbd3af407a29c136895a718ccd96
DIFF:
https://github.com/llvm/llvm-project/commit/51faba35fd81fbd3af407a29c136895a718ccd96.d
Author: Ruslan Arutyunyan
Date: 2021-01-25T13:40:47-05:00
New Revision: 9d5095875754046972d8512d98194acf7f032e36
URL:
https://github.com/llvm/llvm-project/commit/9d5095875754046972d8512d98194acf7f032e36
DIFF:
https://github.com/llvm/llvm-project/commit/9d5095875754046972d8512d98194acf7f032e36.d
Author: Louis Dionne
Date: 2021-02-08T13:49:02-05:00
New Revision: 395ef8d5c67905646b72dd5ef2d8eb60cabb8634
URL:
https://github.com/llvm/llvm-project/commit/395ef8d5c67905646b72dd5ef2d8eb60cabb8634
DIFF:
https://github.com/llvm/llvm-project/commit/395ef8d5c67905646b72dd5ef2d8eb60cabb8634.diff
Author: Louis Dionne
Date: 2021-02-08T13:49:02-05:00
New Revision: 251f3295b498b699aa2b926167a788a6b6dbc033
URL:
https://github.com/llvm/llvm-project/commit/251f3295b498b699aa2b926167a788a6b6dbc033
DIFF:
https://github.com/llvm/llvm-project/commit/251f3295b498b699aa2b926167a788a6b6dbc033.diff
Author: Reid Kleckner
Date: 2021-02-08T13:49:02-05:00
New Revision: bc39d53d9a4f1ed7c903648f3fd408296fd55c95
URL:
https://github.com/llvm/llvm-project/commit/bc39d53d9a4f1ed7c903648f3fd408296fd55c95
DIFF:
https://github.com/llvm/llvm-project/commit/bc39d53d9a4f1ed7c903648f3fd408296fd55c95.diff
Author: Louis Dionne
Date: 2021-06-16T13:16:18-04:00
New Revision: e7dac564cd0ed9dee74ef972c46622743d90915d
URL:
https://github.com/llvm/llvm-project/commit/e7dac564cd0ed9dee74ef972c46622743d90915d
DIFF:
https://github.com/llvm/llvm-project/commit/e7dac564cd0ed9dee74ef972c46622743d90915d.diff
Author: Arthur O'Dwyer
Date: 2021-06-16T13:22:55-04:00
New Revision: 6412392511340a7f1793a00b5b501692300089e6
URL:
https://github.com/llvm/llvm-project/commit/6412392511340a7f1793a00b5b501692300089e6
DIFF:
https://github.com/llvm/llvm-project/commit/6412392511340a7f1793a00b5b501692300089e6.diff
Author: Louis Dionne
Date: 2021-06-16T13:30:36-04:00
New Revision: 82796b3c3dab0a109958f3bfbef7f798c6c8d3e2
URL:
https://github.com/llvm/llvm-project/commit/82796b3c3dab0a109958f3bfbef7f798c6c8d3e2
DIFF:
https://github.com/llvm/llvm-project/commit/82796b3c3dab0a109958f3bfbef7f798c6c8d3e2.diff
Author: zoecarver
Date: 2021-06-16T13:42:47-04:00
New Revision: 0d6fc8550b58d5993858de52e330e01e109ddff9
URL:
https://github.com/llvm/llvm-project/commit/0d6fc8550b58d5993858de52e330e01e109ddff9
DIFF:
https://github.com/llvm/llvm-project/commit/0d6fc8550b58d5993858de52e330e01e109ddff9.diff
LOG
Author: Louis Dionne
Date: 2021-06-22T12:04:29-04:00
New Revision: 275ffa580880f6e18bf9742cad8e5dcab67b1f1d
URL:
https://github.com/llvm/llvm-project/commit/275ffa580880f6e18bf9742cad8e5dcab67b1f1d
DIFF:
https://github.com/llvm/llvm-project/commit/275ffa580880f6e18bf9742cad8e5dcab67b1f1d.diff
Author: Louis Dionne
Date: 2021-06-22T12:44:31-04:00
New Revision: 894c0c889707dd7797c54af8ebe2e91f80e97236
URL:
https://github.com/llvm/llvm-project/commit/894c0c889707dd7797c54af8ebe2e91f80e97236
DIFF:
https://github.com/llvm/llvm-project/commit/894c0c889707dd7797c54af8ebe2e91f80e97236.diff
Author: Louis Dionne
Date: 2021-08-18T11:57:16-04:00
New Revision: c40c3bfa9a879510af230b75252c904a9af40f77
URL:
https://github.com/llvm/llvm-project/commit/c40c3bfa9a879510af230b75252c904a9af40f77
DIFF:
https://github.com/llvm/llvm-project/commit/c40c3bfa9a879510af230b75252c904a9af40f77.diff
Author: Louis Dionne
Date: 2021-08-18T11:57:20-04:00
New Revision: 404024f9adc1b0bb4b88e687472fc0c44cc6f6a2
URL:
https://github.com/llvm/llvm-project/commit/404024f9adc1b0bb4b88e687472fc0c44cc6f6a2
DIFF:
https://github.com/llvm/llvm-project/commit/404024f9adc1b0bb4b88e687472fc0c44cc6f6a2.diff
Author: Louis Dionne
Date: 2021-08-18T11:57:25-04:00
New Revision: 15b8be0b832a2c6d2f47adbd30c19032c93570df
URL:
https://github.com/llvm/llvm-project/commit/15b8be0b832a2c6d2f47adbd30c19032c93570df
DIFF:
https://github.com/llvm/llvm-project/commit/15b8be0b832a2c6d2f47adbd30c19032c93570df.diff
Author: Louis Dionne
Date: 2021-08-20T10:20:00-04:00
New Revision: 80878ccb3286e7de3ef2f67f24b2026f4544d244
URL:
https://github.com/llvm/llvm-project/commit/80878ccb3286e7de3ef2f67f24b2026f4544d244
DIFF:
https://github.com/llvm/llvm-project/commit/80878ccb3286e7de3ef2f67f24b2026f4544d244.diff
Author: Albion Fung
Date: 2021-08-20T13:24:44-04:00
New Revision: 23ba3732246a418e52d6d9ca17b45816ade4dc6d
URL:
https://github.com/llvm/llvm-project/commit/23ba3732246a418e52d6d9ca17b45816ade4dc6d
DIFF:
https://github.com/llvm/llvm-project/commit/23ba3732246a418e52d6d9ca17b45816ade4dc6d.diff
L
Author: Louis Dionne
Date: 2021-08-23T13:08:21-04:00
New Revision: ae5ed5d23bb19d44024a6f5fe581906c8506f060
URL:
https://github.com/llvm/llvm-project/commit/ae5ed5d23bb19d44024a6f5fe581906c8506f060
DIFF:
https://github.com/llvm/llvm-project/commit/ae5ed5d23bb19d44024a6f5fe581906c8506f060.diff
Author: Kazushi (Jam) Marukawa
Date: 2021-08-26T13:22:32-04:00
New Revision: 4094728a81478ae05e4e6cefdc7b2a2cb3a5e73b
URL:
https://github.com/llvm/llvm-project/commit/4094728a81478ae05e4e6cefdc7b2a2cb3a5e73b
DIFF:
https://github.com/llvm/llvm-project/commit/4094728a81478ae05e4e6cefdc7b2a2cb3a5e
Author: Louis Dionne
Date: 2021-08-26T13:22:50-04:00
New Revision: 198edf09f58e19ae912206f871207af3ceace192
URL:
https://github.com/llvm/llvm-project/commit/198edf09f58e19ae912206f871207af3ceace192
DIFF:
https://github.com/llvm/llvm-project/commit/198edf09f58e19ae912206f871207af3ceace192.diff
Author: Louis Dionne
Date: 2021-08-26T13:34:30-04:00
New Revision: 34300c3c00f5c724b662fc228bac8df5196f75c9
URL:
https://github.com/llvm/llvm-project/commit/34300c3c00f5c724b662fc228bac8df5196f75c9
DIFF:
https://github.com/llvm/llvm-project/commit/34300c3c00f5c724b662fc228bac8df5196f75c9.diff
Author: Louis Dionne
Date: 2021-08-27T16:28:45-04:00
New Revision: 9c49fee5e7ac0ca8bc4ec1c3738ca0d83df65852
URL:
https://github.com/llvm/llvm-project/commit/9c49fee5e7ac0ca8bc4ec1c3738ca0d83df65852
DIFF:
https://github.com/llvm/llvm-project/commit/9c49fee5e7ac0ca8bc4ec1c3738ca0d83df65852.diff
Author: Amy Kwan
Date: 2021-09-03T14:56:19-04:00
New Revision: 1c3fcc8ae92ebfe9a9d1a21a288ad71ef7f98091
URL:
https://github.com/llvm/llvm-project/commit/1c3fcc8ae92ebfe9a9d1a21a288ad71ef7f98091
DIFF:
https://github.com/llvm/llvm-project/commit/1c3fcc8ae92ebfe9a9d1a21a288ad71ef7f98091.diff
LOG:
Author: Louis Dionne
Date: 2021-10-21T10:07:03-04:00
New Revision: 30c05f43b662ae0365715449a05a5429ed3562d9
URL:
https://github.com/llvm/llvm-project/commit/30c05f43b662ae0365715449a05a5429ed3562d9
DIFF:
https://github.com/llvm/llvm-project/commit/30c05f43b662ae0365715449a05a5429ed3562d9.diff
Author: Arthur O'Dwyer
Date: 2021-11-05T09:57:08-04:00
New Revision: 6cf25deec7d0b74a073b74048ae8f7f0c69fbfee
URL:
https://github.com/llvm/llvm-project/commit/6cf25deec7d0b74a073b74048ae8f7f0c69fbfee
DIFF:
https://github.com/llvm/llvm-project/commit/6cf25deec7d0b74a073b74048ae8f7f0c69fbfee.diff
Author: Arthur O'Dwyer
Date: 2021-11-05T09:58:10-04:00
New Revision: 00f64ccb49d9049603c0581d1ab23cee52ad8e56
URL:
https://github.com/llvm/llvm-project/commit/00f64ccb49d9049603c0581d1ab23cee52ad8e56
DIFF:
https://github.com/llvm/llvm-project/commit/00f64ccb49d9049603c0581d1ab23cee52ad8e56.diff
Author: Louis Dionne
Date: 2021-12-14T11:13:14-05:00
New Revision: f3394dc82c20feea943293eda162b5aff2930ac9
URL:
https://github.com/llvm/llvm-project/commit/f3394dc82c20feea943293eda162b5aff2930ac9
DIFF:
https://github.com/llvm/llvm-project/commit/f3394dc82c20feea943293eda162b5aff2930ac9.diff
Author: Louis Dionne
Date: 2022-02-02T10:50:30-05:00
New Revision: e3c2861a2daa668414a59bf79339aeb95a91044d
URL:
https://github.com/llvm/llvm-project/commit/e3c2861a2daa668414a59bf79339aeb95a91044d
DIFF:
https://github.com/llvm/llvm-project/commit/e3c2861a2daa668414a59bf79339aeb95a91044d.diff
Author: Louis Dionne
Date: 2022-02-02T17:26:01-05:00
New Revision: c8bb1777fff5d1ae28a2deac0d6677e081d4200f
URL:
https://github.com/llvm/llvm-project/commit/c8bb1777fff5d1ae28a2deac0d6677e081d4200f
DIFF:
https://github.com/llvm/llvm-project/commit/c8bb1777fff5d1ae28a2deac0d6677e081d4200f.diff
Author: Nikolas Klauser
Date: 2022-02-03T17:47:51-05:00
New Revision: d5e113c969bf4b6ac7f9f8872ee1ceaed22b1750
URL:
https://github.com/llvm/llvm-project/commit/d5e113c969bf4b6ac7f9f8872ee1ceaed22b1750
DIFF:
https://github.com/llvm/llvm-project/commit/d5e113c969bf4b6ac7f9f8872ee1ceaed22b1750.dif
Author: Tiago Macarios
Date: 2022-02-03T18:09:56-05:00
New Revision: 749fb39c8e8ac4aa8460aac4926cad42153cc9d1
URL:
https://github.com/llvm/llvm-project/commit/749fb39c8e8ac4aa8460aac4926cad42153cc9d1
DIFF:
https://github.com/llvm/llvm-project/commit/749fb39c8e8ac4aa8460aac4926cad42153cc9d1.diff
Author: Louis Dionne
Date: 2022-02-04T15:26:57-05:00
New Revision: 7ff79971b98a5143cba81bcaebb2d5a70b3728c0
URL:
https://github.com/llvm/llvm-project/commit/7ff79971b98a5143cba81bcaebb2d5a70b3728c0
DIFF:
https://github.com/llvm/llvm-project/commit/7ff79971b98a5143cba81bcaebb2d5a70b3728c0.diff
Author: Louis Dionne
Date: 2022-02-07T12:30:40-05:00
New Revision: 1e7adacd10a465af4e4856e23b7bfb9e0b5c4d76
URL:
https://github.com/llvm/llvm-project/commit/1e7adacd10a465af4e4856e23b7bfb9e0b5c4d76
DIFF:
https://github.com/llvm/llvm-project/commit/1e7adacd10a465af4e4856e23b7bfb9e0b5c4d76.diff
Author: Nikolas Klauser
Date: 2022-02-09T10:37:49-05:00
New Revision: 1bdeb1b877196345a0a0a0b0730b902fb16704d3
URL:
https://github.com/llvm/llvm-project/commit/1bdeb1b877196345a0a0a0b0730b902fb16704d3
DIFF:
https://github.com/llvm/llvm-project/commit/1bdeb1b877196345a0a0a0b0730b902fb16704d3.dif
201 - 300 of 508 matches
Mail list logo