Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9ae6389

Browse files
committedDec 19, 2021
Remove features asm, global_asm and llvm_asm
These features are now stable, as of the 19th of December! See rust-lang/rust#87228
1 parent 974326d commit 9ae6389

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed
 

‎luma_core/src/lib.rs

+1-7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,7 @@
55
//! **NOTE**: This is currently in a very experimental state and is subject to change.
66
#![no_std]
77
#![allow(unused_attributes)]
8-
#![feature(
9-
global_asm,
10-
asm,
11-
asm_experimental_arch,
12-
box_into_boxed_slice,
13-
allocator_api
14-
)]
8+
#![feature(asm_experimental_arch, box_into_boxed_slice, allocator_api)]
159

1610
extern crate alloc;
1711

‎luma_runtime/src/lib.rs

+1-7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,7 @@
55
//!
66
//! **NOTE**: This is currently in a very experimental state and is subject to change.
77
#![no_std]
8-
#![feature(
9-
global_asm,
10-
asm_experimental_arch,
11-
lang_items,
12-
llvm_asm,
13-
alloc_error_handler
14-
)]
8+
#![feature(asm_experimental_arch, lang_items, alloc_error_handler)]
159

1610
use core::arch::global_asm;
1711
use core::{alloc::Layout, panic::PanicInfo};

0 commit comments

Comments
 (0)
Please sign in to comment.