From 2cbd68f149919f34be90c5727e0a9359c21e9650 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Fri, 24 Apr 2026 12:57:25 +0200 Subject: Fix outdated comment on __fallthrough__ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since commit 31dd071e927a ("Change .fallthrough to __fallthrough__") this pseudo control statement is declared via underscores, not like a proper control statement. That was done in order to avoid clashes with ca65, and in order to allow nasm's --prelude to produce a .macro replacement for it when using ca65. Signed-off-by: Miquel Sabaté Solà --- lib/xixanta/src/assembler.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib') diff --git a/lib/xixanta/src/assembler.rs b/lib/xixanta/src/assembler.rs index a5937ba..8ad72b2 100644 --- a/lib/xixanta/src/assembler.rs +++ b/lib/xixanta/src/assembler.rs @@ -997,10 +997,10 @@ impl<'a> Assembler<'a> { self.labels_seen = pn.labels_seen; self.context.force_context_switch(&pn.context); - // .fallthrough is handled here, whenever we already know addresses, - // sizes, etc. If this is the case, this is not a real node that can - // be bundled, but perform its check and move into the next - // iteration. + // __fallthrough__ is handled here, whenever we already know + // addresses, sizes, etc. If this is the case, this is not a real + // node that can be bundled, but perform its check and move into the + // next iteration. // // NOTE: this has to happen with a context switch, otherwise the // name resolution won't be accurate. -- cgit v1.2.3