-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into phated/acvm-0.12.0
* master: chore(ssa refactor): Add loop unrolling pass (#1364) chore: Add terms added in ssa refactor to `cspell` (#1385) chore(ssa refactor): Optimize constant `jmpif`s into `jmp`s (#1374) feat: Allow warnings by default (#1383) chore(github): Update GitHub Pull Request Template (#1370) chore(github): Update GitHub Bug Report Template (#1368) chore(ssa refactor): Update mem2reg pass to work with multiple functions and blocks (#1375) chore(ssa refactor): Add pass to simplify the control flow graph (#1373) chore(github): Update GitHub Feature Request Template (#1369)
- Loading branch information
Showing
20 changed files
with
1,478 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,54 @@ | ||
name: Feature request | ||
description: Suggest an idea for this project. | ||
name: Feature Request | ||
description: Suggest an idea. | ||
labels: [enhancement] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Description | ||
Thanks for taking the time to fill out this feature request to help us improve Noir! | ||
Thanks for taking the time to create the Issue, and welcome to the Noirot family! | ||
- type: textarea | ||
id: problem | ||
attributes: | ||
label: Problem | ||
description: Describe the problem your suggestion sets out to solve. | ||
description: Describe what you feel lacking. Supply code / step-by-step examples if applicable. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: solution | ||
attributes: | ||
label: Proposed solution | ||
description: Describe your proposed solution. | ||
label: Happy Case | ||
description: Describe how you think it should work. Supply pseudocode / step-by-step examples if applicable. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: Alternatives considered | ||
description: Describe any alternative solutions you have considered. | ||
label: Alternatives Considered | ||
description: Describe less-happy cases you have considered, if any. | ||
- type: textarea | ||
id: additional | ||
attributes: | ||
label: Additional context | ||
description: Please provide any additional context that may be applicable. | ||
- type: checkboxes | ||
id: checklist | ||
label: Additional Context | ||
description: Supplement further information if applicable. | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Pull Request | ||
- type: dropdown | ||
id: pr-preference | ||
attributes: | ||
label: Submission Checklist | ||
description: For core contributors. | ||
label: Would you like to submit a PR for this Issue? | ||
description: Fellow contributors are happy to provide support where applicable. | ||
multiple: false | ||
options: | ||
- label: Once I hit submit, I will assign this issue to the Project Board with the appropriate tags. | ||
- "No" | ||
- "Maybe" | ||
- "Yes" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: pr-support | ||
attributes: | ||
label: Support Needs | ||
description: Support from other contributors you are looking for to create a PR for this Issue. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,56 @@ | ||
# Related issue(s) | ||
# Description | ||
|
||
<!-- If it does not already exist, first create a GitHub issue that describes the problem this Pull Request (PR) solves before creating the PR and link it here. --> | ||
<!-- Thanks for taking the time to improve Noir! --> | ||
<!-- Please fill out all fields marked with an asterisk (*). --> | ||
|
||
Resolves # <!-- link to issue --> | ||
## Problem\* | ||
|
||
# Description | ||
<!-- Describe the problem this Pull Request (PR) resolves / link to the GitHub Issue that describes the problem. --> | ||
|
||
## Summary of changes | ||
Resolves <!-- Link to GitHub Issue --> | ||
|
||
<!-- Describe the changes in this PR. Point out breaking changes if any. --> | ||
## Summary\* | ||
|
||
## Dependency additions / changes | ||
<!-- Describe the changes in this PR, particularly breaking changes if any. --> | ||
|
||
<!-- If applicable. --> | ||
This PR sets out to | ||
|
||
## Test additions / changes | ||
### Example | ||
|
||
<!-- If applicable. --> | ||
<!-- Code / step-by-step example(s) to demonstrate the effect of this PR. --> | ||
|
||
# Checklist | ||
Before: | ||
|
||
- [ ] I have tested the changes locally. | ||
- [ ] I have formatted the changes with [Prettier](https://prettier.io/) and/or `cargo fmt` with default settings. | ||
- [ ] I have [linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) this PR to the issue(s) that it resolves. | ||
- [ ] I have reviewed the changes on GitHub, line by line. | ||
- [ ] I have ensured all changes are covered in the description. | ||
``` | ||
``` | ||
|
||
After: | ||
|
||
``` | ||
``` | ||
|
||
## Documentation | ||
|
||
## Documentation needs | ||
- [ ] This PR requires documentation updates when merged. | ||
|
||
<!-- If checked, list / describe what needs to be documented. --> | ||
<!-- If checked, check one of the following: --> | ||
|
||
# Additional context | ||
- [ ] I will submit a noir-lang/docs PR. | ||
|
||
<!-- If applicable. --> | ||
<!-- Submit a PR on https://github.com/noir-lang/docs. Thank you! --> | ||
|
||
- [ ] I will request for and support Dev Rel's help in documenting this PR. | ||
|
||
<!-- List / highlight what should be documented. --> | ||
<!-- Dev Rel will reach out for clarifications when needed. Thank you! --> | ||
|
||
## Additional Context | ||
|
||
<!-- Supplement further information if applicable. --> | ||
|
||
# PR Checklist\* | ||
|
||
- [ ] I have tested the changes locally. | ||
- [ ] I have formatted the changes with [Prettier](https://prettier.io/) and/or `cargo fmt` on default settings. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.