We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf3972e commit 791f976Copy full SHA for 791f976
src/librustc/driver/session.rs
@@ -246,10 +246,7 @@ 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
- // 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
+ self.debugging_opt(no_monomorphic_collapse)
253
}
254
255
fn str_of(id: ast::ident) -> ~str {
0 commit comments