True if LLVM is available and its major version is at least ``major``.
(major: int)
| 360 | |
| 361 | |
| 362 | def has_llvm_min_version(major: int) -> bool: |
| 363 | """True if LLVM is available and its major version is at least ``major``.""" |
| 364 | return has_llvm() and _llvm_version_major() >= major |
| 365 | |
| 366 | |
| 367 | @functools.cache |
nothing calls this directly
no test coverage detected
searching dependent graphs…