-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Check for
&&
and ||
in the HIR const-checker
- Loading branch information
1 parent
01c33e9
commit 5e3a038
Showing
4 changed files
with
47 additions
and
10 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
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 |
---|---|---|
|
@@ -16,6 +16,7 @@ rustc_data_structures = { path = "../librustc_data_structures" } | |
rustc_errors = { path = "../librustc_errors" } | ||
rustc_feature = { path = "../librustc_feature" } | ||
rustc_hir = { path = "../librustc_hir" } | ||
rustc_mir = { path = "../librustc_mir" } | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ecstatic-morse
Author
Contributor
|
||
rustc_index = { path = "../librustc_index" } | ||
rustc_session = { path = "../librustc_session" } | ||
rustc_target = { path = "../librustc_target" } | ||
|
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
rustc_mir is one of the largest crates we've got. rustc_passes is also not a small crate. Doing this will be harmful to compile times of the compiler