Skip to content

Commit 18882dd

Browse files
committed
Rustup to rustc 1.93.0-nightly (843f8ce 2025-11-07)
1 parent 0e41b63 commit 18882dd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly-2025-11-05"
2+
channel = "nightly-2025-11-08"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]
44
profile = "minimal"

src/inline_asm.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ use rustc_ast::ast::{InlineAsmOptions, InlineAsmTemplatePiece};
77
use rustc_hir::LangItem;
88
use rustc_span::sym;
99
use rustc_target::asm::*;
10+
use rustc_target::spec::Arch;
1011
use target_lexicon::BinaryFormat;
1112

1213
use crate::prelude::*;
@@ -51,7 +52,7 @@ pub(crate) fn codegen_inline_asm_terminator<'tcx>(
5152
return;
5253
}
5354

54-
if fx.tcx.sess.target.arch == "s390x"
55+
if fx.tcx.sess.target.arch == Arch::S390x
5556
&& template.len() == 3
5657
&& template[0] == InlineAsmTemplatePiece::String("stfle 0(".into())
5758
&& let InlineAsmTemplatePiece::Placeholder { operand_idx: 0, modifier: None, span: _ } =

0 commit comments

Comments
 (0)