working on changing to use Rust's new asm! syntax since llvm_asm! is being deprecated...
[power-instruction-analyzer.git] / src / lib.rs
index 31d48a64ef1d09e2b5e7a2adc47e645525b043ac..28c5b35b81fed9bce01362b23dd10651c89039af 100644 (file)
@@ -1,7 +1,7 @@
 // SPDX-License-Identifier: LGPL-2.1-or-later
 // See Notices.txt for copyright information
 
-#![cfg_attr(feature = "native_instrs", feature(llvm_asm))]
+#![cfg_attr(feature = "native_instrs", feature(asm))]
 
 #[cfg(all(feature = "native_instrs", not(target_arch = "powerpc64")))]
 compile_error!("native_instrs feature requires target_arch to be powerpc64");