Skip to content

Commit

Permalink
Remove features asm, global_asm and llvm_asm
Browse files Browse the repository at this point in the history
These features are now stable, as of the 19th of December! See
rust-lang/rust#87228
  • Loading branch information
linkmauve committed Dec 19, 2021
1 parent 974326d commit 9ae6389
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 14 deletions.
8 changes: 1 addition & 7 deletions luma_core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,7 @@
//! **NOTE**: This is currently in a very experimental state and is subject to change.
#![no_std]
#![allow(unused_attributes)]
#![feature(
global_asm,
asm,
asm_experimental_arch,
box_into_boxed_slice,
allocator_api
)]
#![feature(asm_experimental_arch, box_into_boxed_slice, allocator_api)]

extern crate alloc;

Expand Down
8 changes: 1 addition & 7 deletions luma_runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,7 @@
//!
//! **NOTE**: This is currently in a very experimental state and is subject to change.
#![no_std]
#![feature(
global_asm,
asm_experimental_arch,
lang_items,
llvm_asm,
alloc_error_handler
)]
#![feature(asm_experimental_arch, lang_items, alloc_error_handler)]

use core::arch::global_asm;
use core::{alloc::Layout, panic::PanicInfo};
Expand Down

0 comments on commit 9ae6389

Please sign in to comment.