Explorar o código

update inline asm

David Carlier %!s(int64=2) %!d(string=hai) anos
pai
achega
63deaec9d8
Modificáronse 1 ficheiros con 3 adicións e 2 borrados
  1. 3 2
      src/header/strings/mod.rs

+ 3 - 2
src/header/strings/mod.rs

@@ -1,6 +1,7 @@
 //! strings implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/strings.h.html
-#![feature(llvm_asm)]
+
 use core::ptr;
+use core::arch;
 
 use crate::{
     header::{ctype, string},
@@ -27,7 +28,7 @@ pub unsafe extern "C" fn explicit_bzero(s: *mut c_void, n: size_t) {
     for i in 0..n {
         *(s as *mut u8).add(i) = 0 as u8;
     }
-    llvm_asm!("" :: "r"(s) : "memory")
+    arch::asm!("");
 }
 
 #[no_mangle]