summary refs log tree commit diff
path: root/src/librustc_codegen_llvm
diff options
context:
space:
mode:
authorJethro Beekman <jethro@fortanix.com>2019-01-30 18:57:55 +0530
committerJethro Beekman <jethro@fortanix.com>2019-01-30 21:07:48 +0530
commita3f0af2e672055cddef1e87b56caff763322e6d9 (patch)
tree175cc7fc1731748772e122b4e6bea1ca93d0a334 /src/librustc_codegen_llvm
parent43b4c4a36b6c189bf0718a9d77ff1164c3fa7cac (diff)
downloadrust-a3f0af2e672055cddef1e87b56caff763322e6d9.tar.gz
rust-a3f0af2e672055cddef1e87b56caff763322e6d9.zip
Add MOVBE feature
Diffstat (limited to 'src/librustc_codegen_llvm')
-rw-r--r--src/librustc_codegen_llvm/llvm_util.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_codegen_llvm/llvm_util.rs b/src/librustc_codegen_llvm/llvm_util.rs
index e2d0e558d3b..b46e6ef84b9 100644
--- a/src/librustc_codegen_llvm/llvm_util.rs
+++ b/src/librustc_codegen_llvm/llvm_util.rs
@@ -147,6 +147,7 @@ const X86_WHITELIST: &[(&str, Option<&str>)] = &[
     ("fxsr", None),
     ("lzcnt", None),
     ("mmx", Some("mmx_target_feature")),
+    ("movbe", Some("movbe_target_feature")),
     ("pclmulqdq", None),
     ("popcnt", None),
     ("rdrand", None),