Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/llvm/enums.cr
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ module LLVM
ArgMemOnly
Builtin
ByVal
Captures
Cold
Convergent
Dereferenceable
Expand Down Expand Up @@ -91,6 +92,7 @@ module LLVM
kinds[ArgMemOnly] = kind_for_name("argmemonly")
kinds[Builtin] = kind_for_name("builtin")
kinds[ByVal] = kind_for_name("byval")
kinds[Captures] = kind_for_name("captures")
kinds[Cold] = kind_for_name("cold")
kinds[Convergent] = kind_for_name("convergent")
kinds[Dereferenceable] = kind_for_name("dereferenceable")
Expand Down
2 changes: 1 addition & 1 deletion src/llvm/ext/llvm-versions.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.1 19.1 18.1 17.0 16.0 15.0 14.0 13.0 12.0 11.1 11.0 10.0 9.0 8.0
21.0 20.1 19.1 18.1 17.0 16.0 15.0 14.0 13.0 12.0 11.1 11.0 10.0 9.0 8.0
1 change: 1 addition & 0 deletions src/llvm/lib_llvm.cr
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
IS_LT_180 = {{compare_versions(LibLLVM::VERSION, "18.0.0") < 0}}
IS_LT_190 = {{compare_versions(LibLLVM::VERSION, "19.0.0") < 0}}
IS_LT_200 = {{compare_versions(LibLLVM::VERSION, "20.0.0") < 0}}
IS_LT_210 = {{compare_versions(LibLLVM::VERSION, "21.0.0") < 0}}
end
{% end %}

Expand Down
Loading