-
Notifications
You must be signed in to change notification settings - Fork 0
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
docs: describe LLVM IR generation features #69
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.
Awesome stuff, just a couple of minor nits!
docs/LLVM IR generation features.md
Outdated
@@ -0,0 +1,132 @@ | |||
````markdown |
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.
````markdown |
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.
fixed
docs/LLVM IR generation features.md
Outdated
@@ -0,0 +1,132 @@ | |||
````markdown | |||
# LLVM IR generation features |
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.
# LLVM IR generation features | |
# LLVM IR Generation Features |
Headings should use title case!
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.
fixed along with the file name
docs/LLVM IR generation features.md
Outdated
executable binary. The `rustc` compiler first picks up the Rust code file and then generates an | ||
intermediate representation known as LLVM IR. LLVM, then performs multiple optimization and |
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 is technically skipping over the HIR
and MIR
phases, but I think that's fine for this.
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.
I added a sentence about that just to make sure I don't introduce any confusion
Signed-off-by: Wojciech Zmuda <[email protected]>
Signed-off-by: Wojciech Zmuda <[email protected]>
2cd2581
to
cdbf120
Compare
Summary
Add results of the research done in #28.
Details
This is more polished version of my notes posted before in the task comments.
Checklist
- [ ] Code is formatted by Rustfmt.