Enable asm_experimental_arch when compiling for xtensa

This commit is contained in:
Juraj Michálek 2022-02-03 09:50:19 +01:00
parent 6b4de41f61
commit a772540d92
1 changed files with 1 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#![cfg_attr(not(feature = "std"), no_std)]
#![feature(asm)]
#![cfg_attr(target_arch = "xtensa", feature(asm_experimental_arch))]
#[cfg(not(feature = "std"))]
use core::panic::PanicInfo;