-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add FileCheck annotations to mir-opt tests. #116810
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
4ff03cd
Allow to run filecheck in mir-opt tests.
cjgillot 8daf14f
Run filecheck on reference_prop.rs
cjgillot 47fa01d
FileCheck array_index_is_temporary.rs
cjgillot 00a7958
FileCheck asm_unwind_panic_abort.rs
cjgillot f65eb1f
FileCheck basic_assignment.rs.
cjgillot 38bf660
FileCheck box_expr.rs
cjgillot d6f4bd5
Add README.
cjgillot f0690d5
FileCheck combine_array_len.
cjgillot 5453a4f
FileCheck bool_compare.
cjgillot ddc328c
FileCheck combine_clone_of_primitives.
cjgillot f856247
FileCheck intrinsic_asserts.
cjgillot 386fff3
FileCheck duplicate_switch_targets.
cjgillot 68c409f
FileCheck combine_transmutes.
cjgillot d8cffda
FileCheck casts.
cjgillot 4bae847
FileCheck lower_intrinsics.
cjgillot ad057d4
FileCheck lower_array_len.
cjgillot d24e44a
FileCheck lower_slice_len.
cjgillot c679b20
Mention skip in README.
cjgillot 1368355
FileCheck issue_106141.
cjgillot 69d9369
FileCheck inline_shims.
cjgillot 328192b
FileCheck transmute.
cjgillot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
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
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
60 changes: 30 additions & 30 deletions
60
tests/mir-opt/address_of.address_of_reborrow.SimplifyCfg-initial.after.mir
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would
[[my_local:_[0-9]+]]
be better to avoid matching random other things that start with_
? Same for basic blocks.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That would be more precise yes. However, I don't think there is any risk of matching the wrong thing. Basic-blocks can only appear in very few places. Likewise, I don't know anything that could be mistaken for a local.