Remove FileType::Other
Added in #35174, this was already unused (and new uses have not been introduced since then).
This commit is contained in:
parent
a3c73ca88c
commit
f043c8fa48
2 changed files with 0 additions and 4 deletions
|
@ -358,9 +358,6 @@ impl SynchronizationScope {
|
||||||
#[derive(Copy, Clone)]
|
#[derive(Copy, Clone)]
|
||||||
#[repr(C)]
|
#[repr(C)]
|
||||||
pub enum FileType {
|
pub enum FileType {
|
||||||
// FIXME: figure out if this variant is needed at all.
|
|
||||||
#[allow(dead_code)]
|
|
||||||
Other,
|
|
||||||
AssemblyFile,
|
AssemblyFile,
|
||||||
ObjectFile,
|
ObjectFile,
|
||||||
}
|
}
|
||||||
|
|
|
@ -597,7 +597,6 @@ extern "C" void LLVMRustSetLLVMOptions(int Argc, char **Argv) {
|
||||||
}
|
}
|
||||||
|
|
||||||
enum class LLVMRustFileType {
|
enum class LLVMRustFileType {
|
||||||
Other,
|
|
||||||
AssemblyFile,
|
AssemblyFile,
|
||||||
ObjectFile,
|
ObjectFile,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue