-
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
move parse_cfgspecs
to rustc_interface
#65595
Conversation
use crate::session::search_paths::SearchPath; | ||
extern crate getopts; | ||
|
||
use crate::interface::parse_cfgspecs; |
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.
(This file has to be moved because of this dependency.)
r=me if this strictly moves the code (no changes) -- it's practically impossible to tell if this is the case, though it seems to be. |
For the future the best way I know of to make this sort of change reviewable is to have one commit which prepares and is strictly a move and then a second commit which fixes up the previous one -- this way the diff can be reviewed as strictly the fixup changes. |
@bors r=Mark-Simulacrum |
📌 Commit d945f98 has been approved by |
move `parse_cfgspecs` to `rustc_interface` Part of rust-lang#65324. r? @Mark-Simulacrum
move `parse_cfgspecs` to `rustc_interface` Part of rust-lang#65324. r? @Mark-Simulacrum
Rollup of 6 pull requests Successful merges: - #64996 (Inline `ptr::null(_mut)` even in debug builds) - #65551 (Avoid realloc in `CString::new`) - #65593 (add test for calling non-const fn) - #65595 (move `parse_cfgspecs` to `rustc_interface`) - #65600 (Remove unneeded `ref` from docs) - #65602 (Fix plural mistake in emitter.rs) Failed merges: r? @ghost
Part of #65324.
r? @Mark-Simulacrum