File tree 3 files changed +0
-5
lines changed
rustc_codegen_llvm/src/llvm
3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -305,7 +305,6 @@ pub enum TypeKind {
305
305
Pointer = 12 ,
306
306
Vector = 13 ,
307
307
Metadata = 14 ,
308
- X86_MMX = 15 ,
309
308
Token = 16 ,
310
309
ScalableVector = 17 ,
311
310
BFloat = 18 ,
@@ -330,7 +329,6 @@ impl TypeKind {
330
329
TypeKind :: Pointer => rustc_codegen_ssa:: common:: TypeKind :: Pointer ,
331
330
TypeKind :: Vector => rustc_codegen_ssa:: common:: TypeKind :: Vector ,
332
331
TypeKind :: Metadata => rustc_codegen_ssa:: common:: TypeKind :: Metadata ,
333
- TypeKind :: X86_MMX => rustc_codegen_ssa:: common:: TypeKind :: X86_MMX ,
334
332
TypeKind :: Token => rustc_codegen_ssa:: common:: TypeKind :: Token ,
335
333
TypeKind :: ScalableVector => rustc_codegen_ssa:: common:: TypeKind :: ScalableVector ,
336
334
TypeKind :: BFloat => rustc_codegen_ssa:: common:: TypeKind :: BFloat ,
Original file line number Diff line number Diff line change @@ -91,7 +91,6 @@ pub enum TypeKind {
91
91
Pointer ,
92
92
Vector ,
93
93
Metadata ,
94
- X86_MMX ,
95
94
Token ,
96
95
ScalableVector ,
97
96
BFloat ,
Original file line number Diff line number Diff line change @@ -1419,8 +1419,6 @@ extern "C" LLVMTypeKind LLVMRustGetTypeKind(LLVMTypeRef Ty) {
1419
1419
return LLVMPointerTypeKind;
1420
1420
case Type::FixedVectorTyID:
1421
1421
return LLVMVectorTypeKind;
1422
- case Type::X86_MMXTyID:
1423
- return LLVMX86_MMXTypeKind;
1424
1422
case Type::TokenTyID:
1425
1423
return LLVMTokenTypeKind;
1426
1424
case Type::ScalableVectorTyID:
You can’t perform that action at this time.
0 commit comments