Skip to content

Commit 55d680b

Browse files
authored
Update compiler/rustc_mir_transform/src/check_alignment.rs
1 parent dabcfff commit 55d680b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

compiler/rustc_mir_transform/src/check_alignment.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ pub struct CheckAlignment;
1414

1515
impl<'tcx> MirPass<'tcx> for CheckAlignment {
1616
fn is_enabled(&self, sess: &Session) -> bool {
17+
// FIXME(#112480) MSVC and rustc disagree on minimum stack alignment on x86 Windows
1718
if sess.target.llvm_target == "i686-pc-windows-msvc" {
1819
return false;
1920
}

0 commit comments

Comments
 (0)