-
Notifications
You must be signed in to change notification settings - Fork 539
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
don't refer to the compile-time interpreter as "Miri" #1471
Conversation
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.
Could you also add miri.html
to
Lines 43 to 45 in 1c79085
[output.html.redirect] | |
"/compiletest.html" = "tests/compiletest.html" | |
"/diagnostics/sessiondiagnostic.html" = "diagnostics/diagnostic-structs.html" |
src/interpret.md
Outdated
@@ -1,14 +1,13 @@ | |||
# Miri | |||
# Interpreter |
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.
We could move this under src/mir
, placing it on the top-level dir seems a bit ambiguous to me.
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.
In the TOC it is listed below const-eval so maybe we should make that a folder?
0ef8044
to
fdf6d5f
Compare
Thanks! |
…kh726 avoid 'miri' when refering to the shared interpreter This is basically the rustc source code version of rust-lang/rustc-dev-guide#1471.
This leads to a lot of confusion when people think the compile-time interpreter does the same things as Miri-the-tool. Also given that the folders in the compiler source are called
interpret
, notmiri
, I think it's better to just call this "the (compile-time) (MIR) interpreter", not "Miri".r? @oli-obk