Skip to content

Commit

Permalink
lib: remove dependency on feature asm_sym
Browse files Browse the repository at this point in the history
It has been stablized in rust-lang/rust#103168
  • Loading branch information
luojia65 committed Oct 19, 2022
1 parent c209a72 commit 09f003d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion see/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![no_std]
#![no_main]
#![feature(naked_functions, asm_sym, asm_const)]
#![feature(naked_functions, asm_const)]

mod execute;
mod extensions;
Expand Down
2 changes: 1 addition & 1 deletion spl/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#![no_std]
#![no_main]
#![feature(naked_functions, asm_sym, asm_const)]
#![feature(naked_functions, asm_const)]

mod flash;
mod logging;
Expand Down
2 changes: 1 addition & 1 deletion test-kernel/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#![no_std]
#![no_main]
#![feature(naked_functions, asm_sym, asm_const)]
#![feature(naked_functions, asm_const)]

use core::arch::asm;
use sbi_testing::sbi;
Expand Down

0 comments on commit 09f003d

Please sign in to comment.