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