Skip to content

Commit ebff638

Browse files
committed
Auto merge of #33117 - tamird:remove-outdated-workaround, r=sanxiyn
librustc: remove outdated workaround Fixed upstream: llvm-mirror/llvm@ca07e256f62f @alexcrichton following up from #31709 (comment) cc @ranma42
2 parents f01bb5e + 2872c23 commit ebff638

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/librustc/session/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -535,9 +535,6 @@ unsafe fn configure_llvm(sess: &Session) {
535535
if sess.time_llvm_passes() { add("-time-passes"); }
536536
if sess.print_llvm_passes() { add("-debug-pass=Structure"); }
537537

538-
// FIXME #21627 disable faulty FastISel on AArch64 (even for -O0)
539-
if sess.target.target.arch == "aarch64" { add("-fast-isel=0"); }
540-
541538
for arg in &sess.opts.cg.llvm_args {
542539
add(&(*arg));
543540
}

0 commit comments

Comments
 (0)