Remove std feature from cranelift-preopt

This commit is contained in:
bjorn3
2019-09-28 15:59:08 +02:00
committed by Dan Gohman
parent 1a99ac6b4a
commit 9037e7a601
2 changed files with 0 additions and 12 deletions

View File

@@ -20,13 +20,6 @@
)]
#![no_std]
#[cfg(not(feature = "std"))]
#[macro_use]
extern crate alloc as std;
#[cfg(feature = "std")]
#[macro_use]
extern crate std;
mod constant_folding;
use cranelift_codegen::{isa::TargetIsa, settings::FlagsOrIsa, CodegenResult, Context};