Thread
Commits
-
Remove unused parameter from check_and_push_window_quals
- 4be9024d5733 19 (unreleased) landed
-
Remove unused parameter on check_and_push_window_quals
Matheus Alcantara <matheusssilv97@gmail.com> — 2025-09-25T21:01:40Z
Hi, While reading the check_and_push_window_quals() I realize that the Index rti parameter is not being used by check_and_push_window_quals() and find_window_run_conditions(). The attached patch remove this parameter for these functions. -- Matheus Alcantara
-
Re: Remove unused parameter on check_and_push_window_quals
David Rowley <dgrowleyml@gmail.com> — 2025-09-25T21:50:38Z
On Fri, 26 Sept 2025 at 09:01, Matheus Alcantara <matheusssilv97@gmail.com> wrote: > While reading the check_and_push_window_quals() I realize that the Index > rti parameter is not being used by check_and_push_window_quals() and > find_window_run_conditions(). The attached patch remove this parameter > for these functions. Thanks. I'll have a look at this. David
-
Re: Remove unused parameter on check_and_push_window_quals
David Rowley <dgrowleyml@gmail.com> — 2025-09-25T22:23:23Z
On Fri, 26 Sept 2025 at 09:50, David Rowley <dgrowleyml@gmail.com> wrote: > > On Fri, 26 Sept 2025 at 09:01, Matheus Alcantara > <matheusssilv97@gmail.com> wrote: > > While reading the check_and_push_window_quals() I realize that the Index > > rti parameter is not being used by check_and_push_window_quals() and > > find_window_run_conditions(). The attached patch remove this parameter > > for these functions. > > Thanks. I'll have a look at this. Seems to have been around since that feature was added. Thanks for noticing. Pushed. David