Skip to content

Commit 2872c23

Browse files
committed
librustc: remove outdated workaround
Fixed upstream: llvm-mirror/llvm@ca07e256f62f
1 parent 92e3fb3 commit 2872c23

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)