You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BasicBlock identifies a basic block. It points to an instance of BasicBlockData, which can be retrieved by indexing into Body::basic_blocks() (note that you must call a function; the field is private).
However as of March 2023, I see rust-lang/rust/master is no longer using the function basic_block(), but instead directly accessing the field (yeah it's public now).
Am I missing anything or should we update this sentence? Thank you.
The text was updated successfully, but these errors were encountered:
I'm reading the section on Identifiers in the compiler and it claims
However as of March 2023, I see rust-lang/rust/master is no longer using the function
basic_block()
, but instead directly accessing the field (yeah it's public now).Am I missing anything or should we update this sentence? Thank you.
The text was updated successfully, but these errors were encountered: