Remove AsmDialect::Other

Added in #35174, this was already unused (and new uses have not been introduced
since then).
This commit is contained in:
Mark Rousskov 2020-08-12 11:58:58 -04:00
parent f043c8fa48
commit fc163ed4ee
2 changed files with 0 additions and 4 deletions

View File

@ -384,9 +384,6 @@ pub enum MetadataType {
#[derive(Copy, Clone)]
#[repr(C)]
pub enum AsmDialect {
// FIXME: figure out if this variant is needed at all.
#[allow(dead_code)]
Other,
Att,
Intel,
}

View File

@ -388,7 +388,6 @@ LLVMRustBuildAtomicFence(LLVMBuilderRef B, LLVMAtomicOrdering Order,
}
enum class LLVMRustAsmDialect {
Other,
Att,
Intel,
};