Skip to content

Commit

Permalink
only gep stuff remains
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelraz committed May 13, 2024
1 parent d0340fd commit 84f77f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/llvm_intrin/memory_addr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1230,7 +1230,7 @@ function vstore_quote(
dynamic_index = !(iszero(M) || ind_type === :StaticInt)

typ = LLVM_TYPES_SYM[T_sym]
#=lret = =#vtyp = vtype(W, typ)
lret = vtyp = vtype(W, typ)
if mask
if reverse_store
decl *= truncate_mask!(instrs, '2' + dynamic_index, W, 0, true) * "\n"
Expand Down Expand Up @@ -1298,7 +1298,7 @@ function vstore_quote(
else
Expr(:curly, :Tuple, ptrtyp, T_sym)
end
largs = String[vtyp]
largs = String["ptr", vtyp]
arg_syms = Union{Symbol,Expr}[:ptr, Expr(:call, :data, :v)]
if dynamic_index
push!(arg_syms, :(data(i)))
Expand Down Expand Up @@ -2235,7 +2235,7 @@ end
:Cvoid,
:(Tuple{Ptr{$T}}),
"void",
["ptr"],
["ptr", "i$(8sizeof(U))"],
[:ptr],
false,
true
Expand Down Expand Up @@ -2297,7 +2297,7 @@ end
:Cvoid,
:(Tuple{_Vec{$W,$T},Ptr{$T},$U}),
"void",
["ptr"],
[vtyp, "ptr", "i$(8sizeof(U))"],
[:(data(v)), :ptr, :(data(mask))],
false,
true
Expand Down

0 comments on commit 84f77f1

Please sign in to comment.