File tree 2 files changed +0
-4
lines changed
rustc_codegen_llvm/src/llvm
2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -801,7 +801,6 @@ pub mod debuginfo {
801
801
Default ,
802
802
Gnu ,
803
803
None ,
804
- Apple ,
805
804
}
806
805
}
807
806
Original file line number Diff line number Diff line change @@ -723,7 +723,6 @@ enum class LLVMRustDebugNameTableKind {
723
723
Default,
724
724
GNU,
725
725
None,
726
- Apple,
727
726
};
728
727
729
728
static DICompileUnit::DebugNameTableKind fromRust (LLVMRustDebugNameTableKind Kind) {
@@ -734,8 +733,6 @@ static DICompileUnit::DebugNameTableKind fromRust(LLVMRustDebugNameTableKind Kin
734
733
return DICompileUnit::DebugNameTableKind::GNU;
735
734
case LLVMRustDebugNameTableKind::None:
736
735
return DICompileUnit::DebugNameTableKind::None;
737
- case LLVMRustDebugNameTableKind::Apple:
738
- return DICompileUnit::DebugNameTableKind::Apple;
739
736
default :
740
737
report_fatal_error (" bad DebugNameTableKind." );
741
738
}
You can’t perform that action at this time.
0 commit comments