-
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
Docs are out of date for rustc_codegen_llvm #75342
Labels
A-codegen
Area: Code generation
A-docs
Area: Documentation for any part of the project, including the compiler, standard library, and tools
C-bug
Category: This is a bug.
E-help-wanted
Call for participation: Help is requested to fix this issue.
Comments
This comment has been minimized.
This comment has been minimized.
It looks like |
This comment has been minimized.
This comment has been minimized.
I finally have enough knowledge to fix these! |
Dylan-DPC-zz
pushed a commit
to Dylan-DPC-zz/rust
that referenced
this issue
Dec 31, 2020
Update and improve `rustc_codegen_{llvm,ssa}` docs Fixes rust-lang#75342. These docs were very out of date and misleading. They even said that they codegen'd the *AST*! For some reason, the `rustc_codegen_ssa::base` docs were exactly identical to the `rustc_codegen_llvm::base` docs. They didn't really make sense, because they had LLVM-specific information even though `rustc_codegen_ssa` is supposed to be somewhat generic. So I removed them as they were misleading. r? `@pnkfelix` maybe?
GuillaumeGomez
added a commit
to GuillaumeGomez/rust
that referenced
this issue
Dec 31, 2020
Update and improve `rustc_codegen_{llvm,ssa}` docs Fixes rust-lang#75342. These docs were very out of date and misleading. They even said that they codegen'd the *AST*! For some reason, the `rustc_codegen_ssa::base` docs were exactly identical to the `rustc_codegen_llvm::base` docs. They didn't really make sense, because they had LLVM-specific information even though `rustc_codegen_ssa` is supposed to be somewhat generic. So I removed them as they were misleading. r? ```@pnkfelix``` maybe?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-codegen
Area: Code generation
A-docs
Area: Documentation for any part of the project, including the compiler, standard library, and tools
C-bug
Category: This is a bug.
E-help-wanted
Call for participation: Help is requested to fix this issue.
The docs for
rustc_codegen_llvm::base
reference functions namedcodegen_expr
andcodegen_block
, but those functions do not appear anywhere in rustc. It seems the docs for this module have not been updated in two years, so perhaps that is why?The text was updated successfully, but these errors were encountered: