8000 Use a DFS to compare CTFE snapshots by ecstatic-morse · Pull Request #66946 · rust-lang/rust · GitHub
[go: up one dir, main page]

Skip to content

Use a DFS to compare CTFE snapshots #66946

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

Closed
Prev Previous commit
Next Next commit
Fix typo
Co-Authored-By: Oliver Scherer <github35764891676564198441@oli-obk.de>
  • Loading branch information
ecstatic-morse and oli-obk committed Dec 9, 2019
commit e017f57b7f61c2483c4eb47c875eb6b1ef17c1b9
2 changes: 1 addition & 1 deletion src/librustc_mir/interpret/snapshot.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Capture and compare snapshots of the compile-time interpreter state to detect when a program
//! will loop infinitely.
//!
//! This lives in `interpret` because it needs access to all sots of private state. However,
//! This lives in `interpret` because it needs access to all sorts of private state. However,
//! it is not used by the general miri engine, just by CTFE.
//!
//! # Comparing interpreter state
Expand Down
0