summary refs log tree commit diff
path: root/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp
diff options
context:
space:
mode:
authorMatthew Maurer <mmaurer@google.com>2024-07-25 16:47:30 +0000
committerMatthew Maurer <mmaurer@google.com>2024-07-25 17:58:37 +0000
commit38931cd227a9e177ddb749da26ce03f2eb6532aa (patch)
tree80635452a7b4ca82baf930c946922b1e4a90f089 /compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp
parent54be9ad5eb47207d155904f6c912a9526133f75f (diff)
downloadrust-38931cd227a9e177ddb749da26ce03f2eb6532aa.tar.gz
rust-38931cd227a9e177ddb749da26ce03f2eb6532aa.zip
LLVM: LLVM-20.0 removes MMX types
See llvm/llvm-project#98505
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp')
-rw-r--r--compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp
index 14757b27a37..4cdd8af1008 100644
--- a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp
+++ b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp
@@ -1419,8 +1419,6 @@ extern "C" LLVMTypeKind LLVMRustGetTypeKind(LLVMTypeRef Ty) {
     return LLVMPointerTypeKind;
   case Type::FixedVectorTyID:
     return LLVMVectorTypeKind;
-  case Type::X86_MMXTyID:
-    return LLVMX86_MMXTypeKind;
   case Type::TokenTyID:
     return LLVMTokenTypeKind;
   case Type::ScalableVectorTyID: