Revision 94db36472f03b4e47644b88304d3f9fea6226a3f authored by Shuhei Kadowaki on 18 January 2024, 03:18:17 UTC, committed by GitHub on 18 January 2024, 03:18:17 UTC
The special handling for `depwarn`, originating from
JuliaLang/julia#27918 in 2018, is now set to be replaced by the more
recent compiler annotations, esp. `@nospecializeinfer`. Assessing
potential regressions from this change might be challenging, but I
confirmed this only has a minimal impact on image sizes at least.
1 parent 0b0e3bf
Raw File
.gitignore
/*.tar.gz
/tmp
/dist
/dist-extras
/julia
/julia.bat
/usr
/oprofile_data
/usr-staging
/Make.user
/julia-*
/source-dist.tmp
/source-dist.tmp1

*.expmap
*.exe
*.dll
*.dwo
*.do
*.o
*.o.tmp
*.obj
*.so
*.dylib
*.dSYM
*.h.gen
*.jl.cov
*.jl.*.cov
*.jl.mem
*.jl.*.mem
*.ji

/perf*
.DS_Store
.idea/*
.vscode/*
*.heapsnapshot
.cache
# Buildkite: Ignore the entire .buildkite directory
/.buildkite

# Buildkite: Ignore the unencrypted repo_key
repo_key

# Buildkite: Ignore any agent keys (public or private) we have stored
agent_key*
back to top