Skip to content

Commit

Permalink
Remove trailing spaces (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
qinsoon authored Apr 29, 2024
1 parent 7d89137 commit 0ac54e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/julia.h
Original file line number Diff line number Diff line change
Expand Up @@ -860,14 +860,14 @@ struct _jl_gcframe_t {
#define JL_GC_ENCODE_PUSH_NO_TPIN(n) JL_GC_ENCODE_PUSH(n)
#else

// We use an extra bit (100) in the nroots value from the frame to indicate that the roots
// We use an extra bit (100) in the nroots value from the frame to indicate that the roots
// in the frame are/are not transitively pinning.
// There are currently 3 macros that encode passing nroots to the gcframe
// There are currently 3 macros that encode passing nroots to the gcframe
// and they use the two lowest bits to encode information about what is in the frame (as below).
// To support the distinction between transtively pinning roots and non transitively pinning roots
// on the stack, we take another bit from nroots to encode information about whether or not to
// on the stack, we take another bit from nroots to encode information about whether or not to
// transitively pin the roots in the frame.
//
//
// So the ones that transitively pin look like:
// #define JL_GC_ENCODE_PUSHARGS(n) (((size_t)(n))<<3)
// #define JL_GC_ENCODE_PUSH(n) ((((size_t)(n))<<3)|1)
Expand Down

0 comments on commit 0ac54e6

Please sign in to comment.