Remove hack to not use type_use on x86

This commit is contained in:
Brian Anderson 2012-12-06 19:45:32 -08:00
parent cf3972e95a
commit 791f976e8c

View File

@ -246,10 +246,7 @@ impl Session {
fn borrowck_note_pure() -> bool { self.debugging_opt(borrowck_note_pure) }
fn borrowck_note_loan() -> bool { self.debugging_opt(borrowck_note_loan) }
fn no_monomorphic_collapse() -> bool {
// FIXME #4127: Type use is causing mysterious bustage on 32-bit archs
let type_use_unreliable = self.targ_cfg.arch == arch_x86;
self.debugging_opt(no_monomorphic_collapse) || type_use_unreliable
self.debugging_opt(no_monomorphic_collapse)
}
fn str_of(id: ast::ident) -> ~str {