1
Fork 0

Remove the unused LLVMRustIsRustLLVM

This commit is contained in:
Josh Stone 2019-04-18 15:28:18 -07:00
parent eed3619f8d
commit a1099ae73e
2 changed files with 0 additions and 9 deletions

View file

@ -613,14 +613,6 @@ extern "C" uint32_t LLVMRustVersionMinor() { return LLVM_VERSION_MINOR; }
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,
uint32_t Value) {
unwrap(M)->addModuleFlag(Module::Warning, Name, Value);