Skip to content

Commit

Permalink
Fix typos in runtime_intrinsics.c (#43850)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkf authored Jan 18, 2022
1 parent 45acb76 commit c5158f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/runtime_intrinsics.c
Original file line number Diff line number Diff line change
Expand Up @@ -357,8 +357,8 @@ JL_DLLEXPORT jl_value_t *jl_atomic_pointerswap(jl_value_t *p, jl_value_t *x, jl_

JL_DLLEXPORT jl_value_t *jl_atomic_pointermodify(jl_value_t *p, jl_value_t *f, jl_value_t *x, jl_value_t *order)
{
JL_TYPECHK(atomic_pointerref, pointer, p);
JL_TYPECHK(atomic_pointerref, symbol, order)
JL_TYPECHK(atomic_pointermodify, pointer, p);
JL_TYPECHK(atomic_pointermodify, symbol, order)
(void)jl_get_atomic_order_checked((jl_sym_t*)order, 1, 1);
jl_value_t *ety = jl_tparam0(jl_typeof(p));
char *pp = (char*)jl_unbox_long(p);
Expand Down

2 comments on commit c5158f4

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your package evaluation job has completed - possible new issues were detected. A full report can be found here.

Please sign in to comment.