diff options
| author | Matthew Maurer <mmaurer@google.com> | 2024-07-25 16:47:30 +0000 |
|---|---|---|
| committer | Matthew Maurer <mmaurer@google.com> | 2024-07-25 17:58:37 +0000 |
| commit | 38931cd227a9e177ddb749da26ce03f2eb6532aa (patch) | |
| tree | 80635452a7b4ca82baf930c946922b1e4a90f089 /compiler/rustc_codegen_llvm/src/llvm/ffi.rs | |
| parent | 54be9ad5eb47207d155904f6c912a9526133f75f (diff) | |
| download | rust-38931cd227a9e177ddb749da26ce03f2eb6532aa.tar.gz rust-38931cd227a9e177ddb749da26ce03f2eb6532aa.zip | |
LLVM: LLVM-20.0 removes MMX types
See llvm/llvm-project#98505
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/llvm/ffi.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/llvm/ffi.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs index ae46200d3f5..3beda28ac1f 100644 --- a/compiler/rustc_codegen_llvm/src/llvm/ffi.rs +++ b/compiler/rustc_codegen_llvm/src/llvm/ffi.rs @@ -305,7 +305,6 @@ pub enum TypeKind { Pointer = 12, Vector = 13, Metadata = 14, - X86_MMX = 15, Token = 16, ScalableVector = 17, BFloat = 18, @@ -330,7 +329,6 @@ impl TypeKind { TypeKind::Pointer => rustc_codegen_ssa::common::TypeKind::Pointer, TypeKind::Vector => rustc_codegen_ssa::common::TypeKind::Vector, TypeKind::Metadata => rustc_codegen_ssa::common::TypeKind::Metadata, - TypeKind::X86_MMX => rustc_codegen_ssa::common::TypeKind::X86_MMX, TypeKind::Token => rustc_codegen_ssa::common::TypeKind::Token, TypeKind::ScalableVector => rustc_codegen_ssa::common::TypeKind::ScalableVector, TypeKind::BFloat => rustc_codegen_ssa::common::TypeKind::BFloat, |
