Skip to content

Commit 4ef316f

Browse files
authored
Update compiler/rustc_mir_transform/src/check_alignment.rs
1 parent c54672e commit 4ef316f

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
@@ -15,6 +15,7 @@ pub struct CheckAlignment;
1515

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

0 commit comments

Comments
 (0)