We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8f678ae + cbd143f commit 6a3dd30Copy full SHA for 6a3dd30
src/librustc/driver/driver.rs
@@ -337,9 +337,7 @@ pub fn phase_5_run_llvm_passes(sess: Session,
337
// segmented stacks are enabled. However, unwind info directives in assembly
338
// output are OK, so we generate assembly first and then run it through
339
// an external assembler.
340
- // Same for Android.
341
- if (sess.targ_cfg.os == session::OsAndroid ||
342
- sess.targ_cfg.os == session::OsWin32) &&
+ if sess.targ_cfg.os == session::OsWin32 &&
343
(sess.opts.output_type == link::output_type_object ||
344
sess.opts.output_type == link::output_type_exe) {
345
let output_type = link::output_type_assembly;
0 commit comments