We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dabcfff commit 55d680bCopy full SHA for 55d680b
compiler/rustc_mir_transform/src/check_alignment.rs
@@ -14,6 +14,7 @@ pub struct CheckAlignment;
14
15
impl<'tcx> MirPass<'tcx> for CheckAlignment {
16
fn is_enabled(&self, sess: &Session) -> bool {
17
+ // FIXME(#112480) MSVC and rustc disagree on minimum stack alignment on x86 Windows
18
if sess.target.llvm_target == "i686-pc-windows-msvc" {
19
return false;
20
}
0 commit comments