From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/gcc-patches:master commit in: 15.0.0/gentoo/
Date: Sat, 11 Jan 2025 12:53:00 +0000 (UTC) [thread overview]
Message-ID: <1736599956.363d9cf8b9fb665334e166cdaf515bb28dbc2880.sam@gentoo> (raw)
commit: 363d9cf8b9fb665334e166cdaf515bb28dbc2880
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 11 12:52:36 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan 11 12:52:36 2025 +0000
URL: https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=363d9cf8
15.0.0: refresh C23 "too many/few" arguments patch
Signed-off-by: Sam James <sam <AT> gentoo.org>
...ovements-to-too-few-many-arguments-errors.patch | 233 +++++++++++++++++----
1 file changed, 197 insertions(+), 36 deletions(-)
diff --git a/15.0.0/gentoo/77_all_PR118112-c-c-UX-improvements-to-too-few-many-arguments-errors.patch b/15.0.0/gentoo/77_all_PR118112-c-c-UX-improvements-to-too-few-many-arguments-errors.patch
index 8688ac1..b1e83b5 100644
--- a/15.0.0/gentoo/77_all_PR118112-c-c-UX-improvements-to-too-few-many-arguments-errors.patch
+++ b/15.0.0/gentoo/77_all_PR118112-c-c-UX-improvements-to-too-few-many-arguments-errors.patch
@@ -1,11 +1,165 @@
-https://inbox.sourceware.org/gcc-patches/20241219234019.722392-1-dmalcolm@redhat.com/
+https://inbox.sourceware.org/gcc-patches/f34fdf57159821af93c7da1643edfa4796a77ad4.camel@redhat.com/#t
-From b0525913499d305c2116e31bc6505ed67e87cf19 Mon Sep 17 00:00:00 2001
-Message-ID: <b0525913499d305c2116e31bc6505ed67e87cf19.1734659653.git.sam@gentoo.org>
+From 595638c60e39f513301e34afdf14b04247634838 Mon Sep 17 00:00:00 2001
+Message-ID: <595638c60e39f513301e34afdf14b04247634838.1736599921.git.sam@gentoo.org>
From: David Malcolm <dmalcolm@redhat.com>
-Date: Thu, 19 Dec 2024 18:40:19 -0500
+Date: Fri, 10 Jan 2025 13:47:43 -0500
Subject: [PATCH] c/c++: UX improvements to 'too {few,many} arguments' errors
[PR118112]
+MIME-Version: 1.0
+Content-Type: text/plain; charset=UTF-8
+Content-Transfer-Encoding: 8bit
+
+On Thu, 2025-01-09 at 22:28 -0500, David Malcolm wrote:
+> On Thu, 2025-01-09 at 21:15 -0500, Jason Merrill wrote:
+> > On 1/9/25 7:00 PM, David Malcolm wrote:
+> > > On Thu, 2025-01-09 at 14:21 -0500, Jason Merrill wrote:
+> > >
+> > > Thanks for taking a look...
+> > >
+> > > > > On 1/9/25 2:11 PM, David Malcolm wrote:
+> > > > >
+> > > > > @@ -4743,7 +4769,38 @@ convert_arguments (tree typelist,
+> > > > > vec<tree,
+> > > > > va_gc> **values, tree fndecl,
+> > > > > if (typetail && typetail != void_list_node)
+> > > > > {
+> > > > > if (complain & tf_error)
+> > > > > - error_args_num (input_location, fndecl,
+> > > > > /*too_many_p=*/false);
+> > > > > + {
+> > > > > + /* Not enough args.
+> > > > > + Determine minimum number of arguments
+> > > > > required. */
+> > > > > + int min_expected_num = 0;
+> > > > > + bool at_least_p = false;
+> > > > > + tree iter = typelist;
+> > > > > + while (true)
+> > > > > + {
+> > > > > + if (!iter)
+> > > > > + {
+> > > > > + /* Variadic arguments; stop
+> > > > > iterating.
+> > > > > */
+> > > > > + at_least_p = true;
+> > > > > + break;
+> > > > > + }
+> > > > > + if (iter == void_list_node)
+> > > > > + /* End of arguments; stop iterating. */
+> > > > > + break;
+> > > > > + if (fndecl && TREE_PURPOSE (iter)
+> > > > > + && TREE_CODE (TREE_PURPOSE (iter)) !=
+> > > > > DEFERRED_PARSE)
+> > > > >
+> > > >
+> > > > Why are you checking DEFERRED_PARSE? That indicates a default
+> > > > argument,
+> > > > even if it isn't parsed yet. For that case we should get the
+> > > > error
+> > > > in
+> > > > convert_default_arg rather than pretend there's no default
+> > > > argument.
+> > >
+> > > I confess that the check for DEFERRED_PARSE was a rather mindless
+> > > copy
+> > > and paste by me from the "See if there are default arguments that
+> > > can be
+> > > used" logic earlier in the function.
+> > >
+> > > I've removed it in the latest version of the patch.
+> > >
+> > > > > + {
+> > > > > + /* Found a default argument; skip this
+> > > > > one when
+> > > > > + counting minimum required. */
+> > > > > + at_least_p = true;
+> > > > > + iter = TREE_CHAIN (iter);
+> > > > > + continue;
+> > > >
+> > > > We could break here, once you have a default arg the rest of
+> > > > the
+> > > > parms
+> > > > need to have them as well.
+> > >
+> > > Indeed; I've updated this in the latest version of the patch, so
+> > > we break out as soon as we see an arg with a non-null
+> > > TREE_PURPOSE.
+> > >
+> > > >
+> > > > > + }
+> > > > > + ++min_expected_num;
+> > > > > + iter = TREE_CHAIN (iter);
+> > > > > + }
+> > > > > + error_args_num (input_location, fndecl,
+> > > > > + min_expected_num, actual_num,
+> > > > > at_least_p);
+> > > > > + }
+> > > > > return -1;
+> > > > > }
+> > >
+> > > Here's a v3 version of the patch, which is currently going
+> > > through
+> > > my tester.
+> > >
+> > > OK for trunk if it passes bootstrap®rtesting?
+> >
+> > OK.
+>
+> Thanks. However, it turns out that I may have misspoke, and the v2
+> patch might have been the correct approach: if we bail out on the
+> first
+> arg with a TREE_PURPOSE then in
+> gcc/testsuite/g++.dg/cpp0x/variadic169.C
+>
+> 1 │ // DR 2233
+> 2 │ // { dg-do compile { target c++11 } }
+> 3 │
+> 4 │ template<typename ...T> void f(int n = 0, T ...t);
+> 5 │
+> 6 │ int main()
+> 7 │ {
+> 8 │ f<int>(); // { dg-error "too few arguments to
+> function '\[^\n\r\]*'; expected at least 1, have 0" }
+> 9 │ }
+>
+> we instead emit the nonsensical "expected at least 0, have 0":
+>
+> error: too few arguments to function ‘void f(int, T ...) [with T =
+> {int}]’; expected at least 0, have 0
+> 8 | f<int>(); // { dg-error "too few
+> arguments to function '\[^\n\r\]*'; expected at least 1, have 0" }
+> | ~~~~~~^~
+> ../../src/gcc/testsuite/g++.dg/cpp0x/variadic169.C:4:30: note:
+> declared
+> here
+> 4 | template<typename ...T> void f(int n = 0, T ...t);
+> | ^
+>
+> whereas with the v2 patch we count the trailing arg after the default
+> arg, and we emit "expected at least 1, have 0", which seems correct
+> to
+> me.
+>
+> I'm testing a version of the patch that continues to iterate after a
+> TREE_PURPOSE (as v2, but but dropping the check on DEFERRED_PARSE).
+>
+> Thanks
+> Dave
+
+Hi Jason
+
+Here's an updated version of the patch which drops the check on
+DEFERRED_PARSE, but continues to iterate on TREE_PURPOSE, for dealing
+with the case of explicit template args where default args are followed
+by missing mandatory args (the code above mentions DR777, so I
+referenced that).
+
+Successfully bootstrapped & regrtested on x86_64-pc-linux-gnu.
+
+Are the C++ parts OK for trunk?
+
+Thanks
+Dave
Consider this case of a bad call to a callback function (perhaps
due to C23 changing the meaning of () in function decls):
@@ -82,9 +236,6 @@ s.c:1:6: note: declared here
1 | void callee (const char *, ...);
| ^~~~~~
-Successfully bootstrapped & regrtested on x86_64-pc-linux-gnu.
-OK for trunk?
-
gcc/c/ChangeLog:
PR c/118112
* c-typeck.cc (inform_declaration): Add "function_expr" param and
@@ -122,19 +273,19 @@ gcc/testsuite/ChangeLog:
Signed-off-by: David Malcolm <dmalcolm@redhat.com>
---
- gcc/c/c-typeck.cc | 77 ++++++++++++---
- gcc/cp/typeck.cc | 94 ++++++++++++++----
- .../c-c++-common/too-few-arguments.c | 38 ++++++++
- .../c-c++-common/too-many-arguments.c | 96 +++++++++++++++++++
- gcc/testsuite/g++.dg/cpp0x/variadic169.C | 2 +-
- gcc/testsuite/g++.dg/modules/macloc-1_c.C | 4 +-
- gcc/testsuite/g++.dg/modules/macloc-1_d.C | 4 +-
- 7 files changed, 280 insertions(+), 35 deletions(-)
+ gcc/c/c-typeck.cc | 77 +++++++++++--
+ gcc/cp/typeck.cc | 104 ++++++++++++++----
+ .../c-c++-common/too-few-arguments.c | 38 +++++++
+ .../c-c++-common/too-many-arguments.c | 96 ++++++++++++++++
+ gcc/testsuite/g++.dg/cpp0x/variadic169.C | 2 +-
+ gcc/testsuite/g++.dg/modules/macloc-1_c.C | 4 +-
+ gcc/testsuite/g++.dg/modules/macloc-1_d.C | 4 +-
+ 7 files changed, 287 insertions(+), 38 deletions(-)
create mode 100644 gcc/testsuite/c-c++-common/too-few-arguments.c
create mode 100644 gcc/testsuite/c-c++-common/too-many-arguments.c
diff --git a/gcc/c/c-typeck.cc b/gcc/c/c-typeck.cc
-index 9756edaae084..fff2bba06954 100644
+index 6e40f7edf02a..cd9290160d7a 100644
--- a/gcc/c/c-typeck.cc
+++ b/gcc/c/c-typeck.cc
@@ -3737,14 +3737,30 @@ build_function_call (location_t loc, tree function, tree params)
@@ -284,7 +435,7 @@ index 9756edaae084..fff2bba06954 100644
return error_args ? -1 : (int) parmnum;
diff --git a/gcc/cp/typeck.cc b/gcc/cp/typeck.cc
-index 964e549a6122..2966931ca8c1 100644
+index 3e0d71102abd..a8580eddd397 100644
--- a/gcc/cp/typeck.cc
+++ b/gcc/cp/typeck.cc
@@ -59,7 +59,7 @@ static tree get_delta_difference (tree, tree, bool, bool, tsubst_flags_t);
@@ -296,14 +447,17 @@ index 964e549a6122..2966931ca8c1 100644
static int convert_arguments (tree, vec<tree, va_gc> **, tree, int,
tsubst_flags_t);
static bool is_std_move_p (tree);
-@@ -4533,11 +4533,16 @@ cp_build_function_call_vec (tree function, vec<tree, va_gc> **params,
+@@ -4535,11 +4535,19 @@ cp_build_function_call_vec (tree function, vec<tree, va_gc> **params,
}
\f
/* Subroutine of convert_arguments.
- Print an error message about a wrong number of arguments. */
+ Print an error message about a wrong number of arguments.
+ If AT_LEAST_P is true, then EXPECTED_NUM is the minimum number
-+ of expected arguments. */
++ of expected arguments, otherwise EXPECTED_NUM is the exact number
++ of expected arguments.
++ ACTUAL_NUM is the actual number of arguments that were explicitly
++ passed at the callsite (i.e. not counting default arguments). */
static void
-error_args_num (location_t loc, tree fndecl, bool too_many_p)
@@ -315,7 +469,7 @@ index 964e549a6122..2966931ca8c1 100644
if (fndecl)
{
auto_diagnostic_group d;
-@@ -4548,22 +4553,28 @@ error_args_num (location_t loc, tree fndecl, bool too_many_p)
+@@ -4550,22 +4558,28 @@ error_args_num (location_t loc, tree fndecl, bool too_many_p)
== DECL_NAME (TYPE_NAME (DECL_CONTEXT (fndecl)))))
error_at (loc,
too_many_p
@@ -353,7 +507,7 @@ index 964e549a6122..2966931ca8c1 100644
if (!DECL_IS_UNDECLARED_BUILTIN (fndecl))
inform (DECL_SOURCE_LOCATION (fndecl), "declared here");
}
-@@ -4572,12 +4583,19 @@ error_args_num (location_t loc, tree fndecl, bool too_many_p)
+@@ -4574,12 +4588,19 @@ error_args_num (location_t loc, tree fndecl, bool too_many_p)
if (c_dialect_objc () && objc_message_selector ())
error_at (loc,
too_many_p
@@ -378,30 +532,34 @@ index 964e549a6122..2966931ca8c1 100644
}
}
-@@ -4607,6 +4625,10 @@ convert_arguments (tree typelist, vec<tree, va_gc> **values, tree fndecl,
+@@ -4609,9 +4630,11 @@ convert_arguments (tree typelist, vec<tree, va_gc> **values, tree fndecl,
/* Argument passing is always copy-initialization. */
flags |= LOOKUP_ONLYCONVERTING;
+- for (i = 0, typetail = typelist;
+- i < vec_safe_length (*values);
+- i++)
+ /* Preserve actual number of arguments passed (without counting default
+ args), in case we need to complain about too many/few. */
-+ int actual_num = vec_safe_length (*values);
++ const unsigned actual_num = vec_safe_length (*values);
+
- for (i = 0, typetail = typelist;
- i < vec_safe_length (*values);
- i++)
-@@ -4621,7 +4643,10 @@ convert_arguments (tree typelist, vec<tree, va_gc> **values, tree fndecl,
++ for (i = 0, typetail = typelist; i < actual_num; i++)
+ {
+ tree type = typetail ? TREE_VALUE (typetail) : 0;
+ tree val = (**values)[i];
+@@ -4623,7 +4646,10 @@ convert_arguments (tree typelist, vec<tree, va_gc> **values, tree fndecl,
{
if (complain & tf_error)
{
- error_args_num (input_location, fndecl, /*too_many_p=*/true);
+ /* Too many args. */
-+ int expected_num = i;
-+ error_args_num (input_location, fndecl, expected_num, actual_num,
-+ false);
++ error_args_num (input_location, fndecl,
++ /*expected_num=*/i, actual_num,
++ /*at_least_p=*/false);
return i;
}
else
-@@ -4743,7 +4768,38 @@ convert_arguments (tree typelist, vec<tree, va_gc> **values, tree fndecl,
+@@ -4745,7 +4771,41 @@ convert_arguments (tree typelist, vec<tree, va_gc> **values, tree fndecl,
if (typetail && typetail != void_list_node)
{
if (complain & tf_error)
@@ -423,11 +581,14 @@ index 964e549a6122..2966931ca8c1 100644
+ if (iter == void_list_node)
+ /* End of arguments; stop iterating. */
+ break;
-+ if (fndecl && TREE_PURPOSE (iter)
-+ && TREE_CODE (TREE_PURPOSE (iter)) != DEFERRED_PARSE)
++ if (fndecl && TREE_PURPOSE (iter))
+ {
+ /* Found a default argument; skip this one when
-+ counting minimum required. */
++ counting minimum required, but there might
++ be non-default arguments left to count:
++ after DR777, with explicit template args we can
++ end up with a default argument followed by
++ no default argument. */
+ at_least_p = true;
+ iter = TREE_CHAIN (iter);
+ continue;
@@ -624,7 +785,7 @@ index 282a31c4a2d1..56c001fc3f83 100644
+// { dg-regexp "\[^\n]*macloc-1_d.C:8:6: error: too many arguments to function 'int me@agnes\\(\\)'; expected 0, have 1\nIn module agnes, imported at \[^\n]*macloc-1_d.C:4:\n\[^\n]*macloc-1_a.C:11:12: note: declared here\n\[^\n]*macloc-1_a.C:8:20: note: in definition of macro 'BOB'\n" }
+// { dg-regexp "\[^\n]*macloc-1_d.C:9:7: error: too many arguments to function 'void gru@edith\\(\\)'; expected 0, have 1\nIn module edith, imported at \[^\n]*macloc-1_d.C:3:\n\[^\n]*macloc-1_b.C:10:20: note: declared here\n\[^\n]*macloc-1_b.C:6:19: note: in definition of macro 'STUART'\n" }
-base-commit: b11e85adbfdb02bc7743098d358a5ea362648ca1
+base-commit: 65286465b94cba6ee3d59edbc771bef0088ac46e
--
-2.47.1
+2.48.0
next reply other threads:[~2025-01-11 12:53 UTC|newest]
Thread overview: 201+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-11 12:53 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-04-05 15:33 [gentoo-commits] proj/gcc-patches:master commit in: 15.0.0/gentoo/ Sam James
2025-04-05 8:02 Sam James
2025-04-05 1:43 Sam James
2025-04-04 19:06 Sam James
2025-04-02 18:48 Sam James
2025-04-02 18:03 Sam James
2025-04-02 16:14 Sam James
2025-04-02 13:56 Sam James
2025-04-02 4:59 Sam James
2025-04-01 14:46 Sam James
2025-04-01 14:46 Sam James
2025-03-31 22:16 Sam James
2025-03-31 22:03 Sam James
2025-03-31 4:05 Sam James
2025-03-29 20:31 Sam James
2025-03-29 14:33 Sam James
2025-03-29 13:51 Sam James
2025-03-26 6:25 Sam James
2025-03-25 10:27 Sam James
2025-03-25 8:38 Sam James
2025-03-25 2:32 Sam James
2025-03-25 1:27 Sam James
2025-03-24 0:35 Sam James
2025-03-21 19:31 Sam James
2025-03-21 17:21 Sam James
2025-03-21 16:23 Sam James
2025-03-21 11:20 Sam James
2025-03-21 8:51 Sam James
2025-03-21 6:07 Sam James
2025-03-20 22:08 Sam James
2025-03-20 1:59 Sam James
2025-03-20 1:59 Sam James
2025-03-16 22:37 Sam James
2025-03-14 14:46 Sam James
2025-03-14 13:37 Sam James
2025-03-13 16:48 Sam James
2025-03-13 10:08 Sam James
2025-03-11 10:32 Sam James
2025-03-07 16:54 Sam James
2025-03-03 16:38 Sam James
2025-03-01 10:33 Sam James
2025-03-01 6:50 Sam James
2025-02-17 1:30 Sam James
2025-02-13 9:23 Sam James
2025-02-12 15:12 Sam James
2025-02-10 21:22 Sam James
2025-02-09 23:58 Sam James
2025-02-07 23:37 Sam James
2025-02-07 21:19 Sam James
2025-02-03 22:04 Sam James
2025-02-02 22:41 Sam James
2025-01-29 20:21 Sam James
2025-01-26 22:52 Sam James
2025-01-22 16:27 Sam James
2025-01-19 22:43 Sam James
2025-01-16 23:11 Sam James
2025-01-16 23:11 Sam James
2025-01-15 11:41 Sam James
2025-01-14 16:22 Sam James
2025-01-14 15:06 Sam James
2025-01-14 15:06 Sam James
2025-01-14 12:29 Sam James
2025-01-14 8:43 Sam James
2025-01-14 8:40 Sam James
2025-01-13 13:58 Sam James
2025-01-13 6:00 Sam James
2025-01-13 3:40 Sam James
2025-01-13 3:23 Sam James
2025-01-13 3:20 Sam James
2025-01-13 0:20 Sam James
2025-01-12 18:53 Sam James
2025-01-08 21:51 Sam James
2025-01-06 10:50 Sam James
2025-01-06 10:03 Sam James
2025-01-06 4:49 Sam James
2025-01-06 4:44 Sam James
2025-01-06 4:13 Sam James
2025-01-06 4:13 Sam James
2025-01-06 4:13 Sam James
2025-01-06 4:03 Sam James
2025-01-05 23:19 Sam James
2025-01-03 3:07 Sam James
2024-12-30 1:05 Sam James
2024-12-29 10:00 Sam James
2024-12-27 15:14 Sam James
2024-12-24 20:48 Sam James
2024-12-22 22:46 Sam James
2024-12-20 11:25 Sam James
2024-12-20 5:57 Sam James
2024-12-20 1:55 Sam James
2024-12-19 18:34 Sam James
2024-12-13 13:23 Sam James
2024-12-13 11:52 Sam James
2024-12-13 5:08 Sam James
2024-12-12 12:28 Sam James
2024-12-11 4:41 Sam James
2024-12-11 0:58 Sam James
2024-12-10 19:19 Sam James
2024-12-10 14:55 Sam James
2024-12-10 5:19 Sam James
2024-12-10 5:13 Sam James
2024-12-10 5:11 Sam James
2024-12-10 5:07 Sam James
2024-12-09 3:05 Sam James
2024-12-08 22:41 Sam James
2024-12-06 17:33 Sam James
2024-12-04 20:40 Sam James
2024-12-01 22:51 Sam James
2024-12-01 22:51 Sam James
2024-11-30 11:30 Sam James
2024-11-27 17:42 Sam James
2024-11-25 15:10 Sam James
2024-11-25 3:01 Sam James
2024-11-25 3:00 Sam James
2024-11-25 3:00 Sam James
2024-11-24 22:42 Sam James
2024-11-18 17:25 Sam James
2024-11-18 10:42 Sam James
2024-11-18 10:42 Sam James
2024-11-18 9:25 Sam James
2024-11-18 9:25 Sam James
2024-11-14 18:38 Sam James
2024-11-13 4:26 Sam James
2024-11-13 0:16 Sam James
2024-11-12 2:33 Sam James
2024-11-11 19:46 Sam James
2024-11-11 19:46 Sam James
2024-11-10 22:41 Sam James
2024-11-09 16:24 Sam James
2024-11-09 7:55 Sam James
2024-11-08 8:22 Sam James
2024-11-07 16:13 Sam James
2024-11-03 23:16 Sam James
2024-11-01 8:24 Sam James
2024-11-01 8:24 Sam James
2024-11-01 8:18 Sam James
2024-11-01 8:17 Sam James
2024-10-30 16:03 Sam James
2024-10-29 19:17 Sam James
2024-10-28 21:32 Sam James
2024-10-28 8:09 Sam James
2024-10-23 15:40 Sam James
2024-10-22 19:09 Sam James
2024-10-22 18:34 Sam James
2024-10-21 12:33 Sam James
2024-10-21 12:27 Sam James
2024-10-21 12:26 Sam James
2024-10-21 11:45 Sam James
2024-10-20 22:42 Sam James
2024-10-18 14:05 Sam James
2024-10-18 10:35 Sam James
2024-10-17 23:33 Sam James
2024-10-17 23:03 Sam James
2024-10-17 5:01 Sam James
2024-10-17 4:15 Sam James
2024-10-13 22:48 Sam James
2024-10-07 2:45 Sam James
2024-10-04 10:37 Sam James
2024-10-04 9:28 Sam James
2024-10-02 19:45 Sam James
2024-09-30 14:05 Sam James
2024-09-29 22:56 Sam James
2024-09-24 1:41 Sam James
2024-09-23 15:23 Sam James
2024-09-02 2:28 Sam James
2024-08-26 13:44 Sam James
2024-08-26 6:24 Sam James
2024-08-23 13:51 Sam James
2024-08-20 20:31 Sam James
2024-08-19 18:43 Sam James
2024-08-14 9:48 Sam James
2024-08-14 2:57 Sam James
2024-08-11 22:40 Sam James
2024-08-09 19:54 Sam James
2024-08-09 19:54 Sam James
2024-08-09 19:47 Sam James
2024-08-09 19:25 Sam James
2024-08-08 11:10 Sam James
2024-08-08 11:06 Sam James
2024-08-08 11:03 Sam James
2024-08-05 9:09 Sam James
2024-08-05 1:54 Sam James
2024-08-05 1:51 Sam James
2024-08-02 20:39 Sam James
2024-08-01 14:40 Sam James
2024-07-28 23:34 Sam James
2024-07-22 1:11 Sam James
2024-07-19 11:14 Sam James
2024-07-18 0:45 Sam James
2024-07-14 23:36 Sam James
2024-06-28 12:49 Sam James
2024-06-27 0:02 Sam James
2024-06-26 23:57 Sam James
2024-06-16 22:45 Sam James
2024-06-10 20:18 Sam James
2024-06-10 17:28 Sam James
2024-06-10 17:28 Sam James
2024-06-10 2:08 Sam James
2024-06-08 17:03 Sam James
2024-06-08 17:03 Sam James
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1736599956.363d9cf8b9fb665334e166cdaf515bb28dbc2880.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox