Skip to content

Commit ad04cce

Browse files
committed
Auto merge of #22530 - rprichard:master, r=dotdash
Fixes #22525 I wasn't sure if I should reuse `write::get_llvm_opt_level` or not. It returns an `llvm::CodeGenOptLevel`, which is the Rust binding for `CodeGenOpt::Level`. `lto.rs` is passing an optlevel to LLVM's `PassManagerBuilder`, which takes an unsigned int. `PassManagerBuilder`'s optlevel uses essentially the same enumeration (i.e. 0-3 with 2 as default), but it's implicit.
2 parents 0bd1565 + 9167c62 commit ad04cce

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/librustc_trans/back/lto.rs

+6-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,12 @@ pub fn run(sess: &session::Session, llmod: ModuleRef,
167167
llvm::LLVMRustAddAnalysisPasses(tm, pm, llmod);
168168
llvm::LLVMRustAddPass(pm, "verify\0".as_ptr() as *const _);
169169

170-
let opt = sess.opts.cg.opt_level.unwrap_or(0) as libc::c_uint;
170+
let opt = match sess.opts.optimize {
171+
config::No => 0,
172+
config::Less => 1,
173+
config::Default => 2,
174+
config::Aggressive => 3,
175+
};
171176

172177
let builder = llvm::LLVMPassManagerBuilderCreate();
173178
llvm::LLVMPassManagerBuilderSetOptLevel(builder, opt);

src/test/run-pass/sepcomp-lib-lto.rs

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
// aux-build:sepcomp_lib.rs
1515
// compile-flags: -C lto
1616
// no-prefer-dynamic
17+
// ignore-android FIXME #18800
1718

1819
extern crate sepcomp_lib;
1920
use sepcomp_lib::a::one;

0 commit comments

Comments
 (0)