We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8e22bf commit 3f47f93Copy full SHA for 3f47f93
src/lib.rs
@@ -283,8 +283,6 @@ fn build_isa(sess: &Session, enable_pic: bool) -> Box<dyn isa::TargetIsa + 'stat
283
284
flags_builder.set("enable_simd", "true").unwrap();
285
286
- // FIXME(CraneStation/cranelift#732) fix LICM in presence of jump tables
287
- /*
288
use rustc_session::config::OptLevel;
289
match sess.opts.optimize {
290
OptLevel::No => {
@@ -297,7 +295,7 @@ fn build_isa(sess: &Session, enable_pic: bool) -> Box<dyn isa::TargetIsa + 'stat
297
295
OptLevel::Size | OptLevel::SizeMin => {
298
296
sess.warn("Optimizing for size is not supported. Just ignoring the request");
299
}
300
- }*/
+ }
301
302
let flags = settings::Flags::new(flags_builder);
303
0 commit comments