public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* Bugzilla Bug 81649 [PATCH]: Clarify LeakSanitizer in documentation
@ 2022-12-26 20:50 Jonny Grant
  2023-03-01 12:53 ` Fwd: " Jonny Grant
  0 siblings, 1 reply; 4+ messages in thread
From: Jonny Grant @ 2022-12-26 20:50 UTC (permalink / raw)
  To: gcc-patches

My ticket, but text change proposed by Jakub Jelinek.

2022-12-26  Jonathan Grant <jg@jguk.org>
	* gcc/doc/invoke.texi: Clarify LeakSanitizer in documentation
	

From 2d70a3728536151c4c2f78b6c5d5281ce2233d43 Mon Sep 17 00:00:00 2001
From: Jonathan Grant <jg@jguk.org>
Date: Mon, 26 Dec 2022 20:46:23 +0000
Subject: [PATCH] Bugzilla 81649 clarify LeakSanitizer onlinedocs

Signed-off-by: Jonathan Grant <jg@jguk.org>
---
 gcc/doc/invoke.texi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index da9ad1068fb..6743204adc0 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -16668,8 +16668,8 @@ operating on invalid memory addresses with non-call exceptions
 @item -fsanitize=leak
 @opindex fsanitize=leak
 Enable LeakSanitizer, a memory leak detector.
-This option only matters for linking of executables and
-the executable is linked against a library that overrides @code{malloc}
+This option only matters for linking of executables.
+The executable is linked against a library that overrides @code{malloc}
 and other allocator functions.  See
 @uref{https://github.com/google/sanitizers/wiki/AddressSanitizerLeakSanitizer} for more
 details.  The run-time behavior can be influenced using the
-- 
2.37.2

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Fwd: Bugzilla Bug 81649 [PATCH]: Clarify LeakSanitizer in documentation
  2022-12-26 20:50 Bugzilla Bug 81649 [PATCH]: Clarify LeakSanitizer in documentation Jonny Grant
@ 2023-03-01 12:53 ` Jonny Grant
  2023-03-07 23:42   ` Sandra Loosemore
  0 siblings, 1 reply; 4+ messages in thread
From: Jonny Grant @ 2023-03-01 12:53 UTC (permalink / raw)
  To: gcc-patches; +Cc: Jonny Grant, Jakub Jelinek

Hello
I don't have write access, could someone review and apply this please?
Kind regards
Jonny




-------- Forwarded Message --------
Subject: Bugzilla Bug 81649 [PATCH]: Clarify LeakSanitizer in documentation
Date: Mon, 26 Dec 2022 20:50:23 +0000
From: Jonny Grant <jg@jguk.org>
To: gcc-patches@gcc.gnu.org

My ticket, but text change proposed by Jakub Jelinek.

2022-12-26  Jonathan Grant <jg@jguk.org>
	* gcc/doc/invoke.texi: Clarify LeakSanitizer in documentation
	

>From 2d70a3728536151c4c2f78b6c5d5281ce2233d43 Mon Sep 17 00:00:00 2001
From: Jonathan Grant <jg@jguk.org>
Date: Mon, 26 Dec 2022 20:46:23 +0000
Subject: [PATCH] Bugzilla 81649 clarify LeakSanitizer onlinedocs

Signed-off-by: Jonathan Grant <jg@jguk.org>
---
 gcc/doc/invoke.texi | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gcc/doc/invoke.texi b/gcc/doc/invoke.texi
index da9ad1068fb..6743204adc0 100644
--- a/gcc/doc/invoke.texi
+++ b/gcc/doc/invoke.texi
@@ -16668,8 +16668,8 @@ operating on invalid memory addresses with non-call exceptions
 @item -fsanitize=leak
 @opindex fsanitize=leak
 Enable LeakSanitizer, a memory leak detector.
-This option only matters for linking of executables and
-the executable is linked against a library that overrides @code{malloc}
+This option only matters for linking of executables.
+The executable is linked against a library that overrides @code{malloc}
 and other allocator functions.  See
 @uref{https://github.com/google/sanitizers/wiki/AddressSanitizerLeakSanitizer} for more
 details.  The run-time behavior can be influenced using the
-- 
2.37.2

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Fwd: Bugzilla Bug 81649 [PATCH]: Clarify LeakSanitizer in documentation
  2023-03-01 12:53 ` Fwd: " Jonny Grant
@ 2023-03-07 23:42   ` Sandra Loosemore
  2023-03-09 22:06     ` Jonny Grant
  0 siblings, 1 reply; 4+ messages in thread
From: Sandra Loosemore @ 2023-03-07 23:42 UTC (permalink / raw)
  To: Jonny Grant, gcc-patches; +Cc: Jakub Jelinek

On 3/1/23 05:53, Jonny Grant wrote:
> Hello
> I don't have write access, could someone review and apply this please?
> Kind regards
> Jonny

Looks good; I've gone ahead and pushed it for you.

-Sandra



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Fwd: Bugzilla Bug 81649 [PATCH]: Clarify LeakSanitizer in documentation
  2023-03-07 23:42   ` Sandra Loosemore
@ 2023-03-09 22:06     ` Jonny Grant
  0 siblings, 0 replies; 4+ messages in thread
From: Jonny Grant @ 2023-03-09 22:06 UTC (permalink / raw)
  To: Sandra Loosemore, gcc-patches; +Cc: Jakub Jelinek



On 07/03/2023 23:42, Sandra Loosemore wrote:
> On 3/1/23 05:53, Jonny Grant wrote:
>> Hello
>> I don't have write access, could someone review and apply this please?
>> Kind regards
>> Jonny
> 
> Looks good; I've gone ahead and pushed it for you.
> 
> -Sandra

Awesome - thank you. My first gcc patch.
Jonny

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-09 22:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-26 20:50 Bugzilla Bug 81649 [PATCH]: Clarify LeakSanitizer in documentation Jonny Grant
2023-03-01 12:53 ` Fwd: " Jonny Grant
2023-03-07 23:42   ` Sandra Loosemore
2023-03-09 22:06     ` Jonny Grant

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).