Skip to content

Commit 8ca5b94

Browse files
authored
Rename libllvm() -> libllvm_path() (#38306)
1 parent cd33115 commit 8ca5b94

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

base/version.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ else
250250
VersionNumber(libllvm_version_string)
251251
end
252252

253-
libllvm() = ccall(:jl_get_libllvm, Any, ())
253+
libllvm_path() = ccall(:jl_get_libllvm, Any, ())
254254

255255
function banner(io::IO = stdout)
256256
if GIT_VERSION_INFO.tagged_commit

test/sysinfo.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ sprint(Base.Sys.cpu_summary)
77
@test Base.Sys.uptime() > 0
88
Base.Sys.loadavg()
99

10-
@test Base.libllvm() isa Symbol
11-
@test contains(String(Base.libllvm()), "LLVM")
10+
@test Base.libllvm_path() isa Symbol
11+
@test contains(String(Base.libllvm_path()), "LLVM")

0 commit comments

Comments
 (0)