From f0dacd467cb113a2d572c517327cd0f4df415d76 Mon Sep 17 00:00:00 2001 From: Kristoffer Carlsson Date: Mon, 14 Oct 2024 14:26:32 +0200 Subject: [PATCH] Update src/llvm_types.jl Co-authored-by: Cody Tapscott <84105208+topolarity@users.noreply.github.com> --- src/llvm_types.jl | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/llvm_types.jl b/src/llvm_types.jl index 46938c2..266ceb2 100644 --- a/src/llvm_types.jl +++ b/src/llvm_types.jl @@ -279,7 +279,13 @@ end Expr(:purity, true, true, true, true, false) end VERSION >= v"1.9.0-DEV.1019" && push!(purity.args, true) - VERSION >= v"1.11" && push!(purity.args, false, false, false, false, false) + VERSION >= v"1.11" && push!(purity.args, + #= inaccessiblememonly =# true, + #= noub =# true, + #= noub_if_noinbounds =# false, + #= consistent_overlay =# false, + #= nortcall =# true, + ) Expr(:meta, purity, :inline) else Expr(:meta, :inline)