mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
Rollup merge of #102337 - cuviper:llvm-optional-bool, r=nikic
Avoid LLVM-deprecated `Optional::hasValue` LLVM 15 added `Optional::has_value`, and LLVM `main` (16) has deprecated `hasValue`. However, its `explicit operator bool` does the same thing, and was added long ago, so we can use that across our full LLVM range of compatibility.
This commit is contained in:
commit
e1fb698c44
@ -1044,7 +1044,7 @@ extern "C" void LLVMRustSetModulePIELevel(LLVMModuleRef M) {
|
||||
extern "C" void LLVMRustSetModuleCodeModel(LLVMModuleRef M,
|
||||
LLVMRustCodeModel Model) {
|
||||
auto CM = fromRust(Model);
|
||||
if (!CM.hasValue())
|
||||
if (!CM)
|
||||
return;
|
||||
unwrap(M)->setCodeModel(*CM);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user