summaryrefslogtreecommitdiffstats
path: root/vendor/compiler_builtins/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/compiler_builtins/src/lib.rs')
-rw-r--r--vendor/compiler_builtins/src/lib.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/compiler_builtins/src/lib.rs b/vendor/compiler_builtins/src/lib.rs
index 71f249c8e..a6b61bdf5 100644
--- a/vendor/compiler_builtins/src/lib.rs
+++ b/vendor/compiler_builtins/src/lib.rs
@@ -48,6 +48,7 @@ pub mod int;
all(target_arch = "x86_64", target_os = "uefi"),
all(target_arch = "arm", target_os = "none"),
all(target_arch = "xtensa", target_os = "none"),
+ all(target_arch = "mips", target_os = "none"),
target_os = "xous",
all(target_vendor = "fortanix", target_env = "sgx")
))]
@@ -57,6 +58,9 @@ pub mod mem;
#[cfg(target_arch = "arm")]
pub mod arm;
+#[cfg(all(target_arch = "aarch64", target_os = "linux", not(feature = "no-asm"),))]
+pub mod aarch64_linux;
+
#[cfg(all(
kernel_user_helpers,
any(target_os = "linux", target_os = "android"),