Enum llvm_sys::comdat::LLVMComdatSelectionKind [−][src]
#[repr(C)]
pub enum LLVMComdatSelectionKind {
LLVMAnyComdatSelectionKind,
LLVMExactMatchComdatSelectionKind,
LLVMLargestComdatSelectionKind,
LLVMNoDuplicatesComdatSelectionKind,
LLVMSameSizeComdatSelectionKind,
}
Variants
LLVMAnyComdatSelectionKind
The linker may choose any COMDAT.
LLVMExactMatchComdatSelectionKind
The data referenced by the COMDAT must be the same.
LLVMLargestComdatSelectionKind
The linker will choose the largest COMDAT.
LLVMNoDuplicatesComdatSelectionKind
No deduplication is performed.
LLVMSameSizeComdatSelectionKind
The data referenced by the COMDAT must be the same size.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for LLVMComdatSelectionKind
impl Send for LLVMComdatSelectionKind
impl Sync for LLVMComdatSelectionKind
impl Unpin for LLVMComdatSelectionKind
impl UnwindSafe for LLVMComdatSelectionKind
Blanket Implementations
Mutably borrows from an owned value. Read more