We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b60a0be commit 55aa498Copy full SHA for 55aa498
src/librustc/driver/session.rs
@@ -246,7 +246,10 @@ impl Session {
246
fn borrowck_note_pure() -> bool { self.debugging_opt(borrowck_note_pure) }
247
fn borrowck_note_loan() -> bool { self.debugging_opt(borrowck_note_loan) }
248
fn no_monomorphic_collapse() -> bool {
249
- self.debugging_opt(no_monomorphic_collapse)
+ // FIXME #4127: Type use is causing mysterious bustage on 32-bit archs
250
+ let type_use_unreliable = self.targ_cfg.arch == arch_x86;
251
+
252
+ self.debugging_opt(no_monomorphic_collapse) || type_use_unreliable
253
}
254
255
fn str_of(id: ast::ident) -> ~str {
0 commit comments