Skip to content

Commit 713ae48

Browse files
committed
Format asm! macro calls
1 parent 5c558e2 commit 713ae48

24 files changed

+2320
-12
lines changed

src/expr.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1859,11 +1859,9 @@ pub(crate) enum RhsAssignKind<'ast> {
18591859

18601860
impl<'ast> RhsAssignKind<'ast> {
18611861
// TODO(calebcartwright)
1862-
// Preemptive addition for handling RHS with chains, not yet utilized.
18631862
// It may make more sense to construct the chain first and then check
18641863
// whether there are actually chain elements.
1865-
#[allow(dead_code)]
1866-
fn is_chain(&self) -> bool {
1864+
pub(crate) fn is_chain(&self) -> bool {
18671865
match self {
18681866
RhsAssignKind::Expr(kind, _) => {
18691867
matches!(

0 commit comments

Comments
 (0)