Commit 7d07f062 authored by Stan Moore's avatar Stan Moore
Browse files

Remove const from variable

parent f3ed1488
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -287,7 +287,7 @@ int HostThreadTeamData::rendezvous( int64_t * const buffer
      //   ( rank % size_byte ) +
      //   ( ( rank / size_byte ) * size_byte * size_mem_cycle ) +
      //   ( sync_offset * size_byte )
      const int offset = ( rank & mask_byte )
      int offset = ( rank & mask_byte )
                 + ( ( rank & ~mask_byte ) << shift_mem_cycle )
                 + ( sync_offset << shift_byte );

+3 −3
Original line number Diff line number Diff line
@@ -133,7 +133,7 @@ int rendezvous( volatile int64_t * const buffer
      //   ( rank % size_byte ) +
      //   ( ( rank / size_byte ) * size_byte * size_mem_cycle ) +
      //   ( sync_offset * size_byte )
      const int offset = ( rank & mask_byte )
      int offset = ( rank & mask_byte )
                 + ( ( rank & ~mask_byte ) << shift_mem_cycle )
                 + ( sync_offset << shift_byte );