Skip to content

Commit

Permalink
Auto merge of #33117 - tamird:remove-outdated-workaround, r=sanxiyn
Browse files Browse the repository at this point in the history
librustc: remove outdated workaround

Fixed upstream: llvm-mirror/llvm@ca07e256f62f

@alexcrichton following up from #31709 (comment)

cc @ranma42
  • Loading branch information
bors committed Apr 23, 2016
2 parents f01bb5e + 2872c23 commit ebff638
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/librustc/session/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -535,9 +535,6 @@ unsafe fn configure_llvm(sess: &Session) {
if sess.time_llvm_passes() { add("-time-passes"); }
if sess.print_llvm_passes() { add("-debug-pass=Structure"); }

// FIXME #21627 disable faulty FastISel on AArch64 (even for -O0)
if sess.target.target.arch == "aarch64" { add("-fast-isel=0"); }

for arg in &sess.opts.cg.llvm_args {
add(&(*arg));
}
Expand Down

0 comments on commit ebff638

Please sign in to comment.