public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [committed] gen-pass-instances.awk: Rename len_of_end to len_of_close in handle_line
@ 2015-11-12  8:26 Tom de Vries
  0 siblings, 0 replies; only message in thread
From: Tom de Vries @ 2015-11-12  8:26 UTC (permalink / raw)
  To: gcc-patches

[-- Attachment #1: Type: text/plain, Size: 150 bytes --]

Hi,

this patch renames variable len_of_end to len_of_close in handle_line in 
gen-pass-instances.awk.

Committed to trunk as obvious.

Thanks,
- Tom

[-- Attachment #2: 0006-gen-pass-instances.awk-Rename-len_of_end-to-len_of_close-in-handle_line.patch --]
[-- Type: text/x-patch, Size: 892 bytes --]

gen-pass-instances.awk: Rename len_of_end to len_of_close in handle_line

2015-11-11  Tom de Vries  <tom@codesourcery.com>

	* gen-pass-instances.awk (handle_line): Rename len_of_end to
	len_of_close.

---
 gcc/gen-pass-instances.awk | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gcc/gen-pass-instances.awk b/gcc/gen-pass-instances.awk
index 70b00b7..7624959 100644
--- a/gcc/gen-pass-instances.awk
+++ b/gcc/gen-pass-instances.awk
@@ -54,8 +54,9 @@ function handle_line()
 	len_of_call = RLENGTH;
 
 	len_of_start = length("NEXT_PASS (");
-	len_of_end = length(")");
-	len_of_pass_name = len_of_call - (len_of_start + len_of_end);
+	len_of_close = length(")");
+
+	len_of_pass_name = len_of_call - (len_of_start + len_of_close);
 	pass_starts_at = where + len_of_start;
 	pass_name = substr(line, pass_starts_at, len_of_pass_name);
 	if (pass_name in pass_counts)

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2015-11-12  8:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-12  8:26 [committed] gen-pass-instances.awk: Rename len_of_end to len_of_close in handle_line Tom de Vries

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).