Skip to content

Commit 0f7b419

Browse files
authored
Merge pull request #48901 from JuliaLang/sf/jl_total_bytes
Make `jit_total_bytes()` return a `UInt` instead of an `Int`
2 parents ae751e1 + 24b9dd0 commit 0f7b419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

base/timing.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Return the total amount (in bytes) allocated by the just-in-time compiler
103103
for e.g. native code and data.
104104
"""
105105
function jit_total_bytes()
106-
return Int(ccall(:jl_jit_total_bytes, Csize_t, ()))
106+
return ccall(:jl_jit_total_bytes, Csize_t, ())
107107
end
108108

109109
# print elapsed time, return expression value

0 commit comments

Comments
 (0)