Skip to content

Commit 791f976

Browse files
committed
Remove hack to not use type_use on x86
1 parent cf3972e commit 791f976

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/librustc/driver/session.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -246,10 +246,7 @@ impl Session {
246246
fn borrowck_note_pure() -> bool { self.debugging_opt(borrowck_note_pure) }
247247
fn borrowck_note_loan() -> bool { self.debugging_opt(borrowck_note_loan) }
248248
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
249+
self.debugging_opt(no_monomorphic_collapse)
253250
}
254251

255252
fn str_of(id: ast::ident) -> ~str {

0 commit comments

Comments
 (0)