Remove the unused LLVMRustIsRustLLVM
This commit is contained in:
parent
eed3619f8d
commit
a1099ae73e
2 changed files with 0 additions and 9 deletions
|
@ -1382,7 +1382,6 @@ extern "C" {
|
||||||
pub fn LLVMRustDebugMetadataVersion() -> u32;
|
pub fn LLVMRustDebugMetadataVersion() -> u32;
|
||||||
pub fn LLVMRustVersionMajor() -> u32;
|
pub fn LLVMRustVersionMajor() -> u32;
|
||||||
pub fn LLVMRustVersionMinor() -> u32;
|
pub fn LLVMRustVersionMinor() -> u32;
|
||||||
pub fn LLVMRustIsRustLLVM() -> bool;
|
|
||||||
|
|
||||||
pub fn LLVMRustAddModuleFlag(M: &Module, name: *const c_char, value: u32);
|
pub fn LLVMRustAddModuleFlag(M: &Module, name: *const c_char, value: u32);
|
||||||
|
|
||||||
|
|
|
@ -613,14 +613,6 @@ extern "C" uint32_t LLVMRustVersionMinor() { return LLVM_VERSION_MINOR; }
|
||||||
|
|
||||||
extern "C" uint32_t LLVMRustVersionMajor() { return LLVM_VERSION_MAJOR; }
|
extern "C" uint32_t LLVMRustVersionMajor() { return LLVM_VERSION_MAJOR; }
|
||||||
|
|
||||||
extern "C" bool LLVMRustIsRustLLVM() {
|
|
||||||
#ifdef LLVM_RUSTLLVM
|
|
||||||
return 1;
|
|
||||||
#else
|
|
||||||
return 0;
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
extern "C" void LLVMRustAddModuleFlag(LLVMModuleRef M, const char *Name,
|
extern "C" void LLVMRustAddModuleFlag(LLVMModuleRef M, const char *Name,
|
||||||
uint32_t Value) {
|
uint32_t Value) {
|
||||||
unwrap(M)->addModuleFlag(Module::Warning, Name, Value);
|
unwrap(M)->addModuleFlag(Module::Warning, Name, Value);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue