Skip to content

Commit 316fa39

Browse files
authored
Merge pull request #9993 from hppritcha/topic/sessions_fix_hetero
remove always inline attribute from hton/ntoh
2 parents 3f41e0f + 381f130 commit 316fa39

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ompi/mca/pml/ob1/pml_ob1_hdr.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ union mca_pml_ob1_hdr_t {
500500
typedef union mca_pml_ob1_hdr_t mca_pml_ob1_hdr_t;
501501

502502
#if !defined(WORDS_BIGENDIAN) && OPAL_ENABLE_HETEROGENEOUS_SUPPORT
503-
static inline __opal_attribute_always_inline__ void
503+
static inline void
504504
ob1_hdr_ntoh(mca_pml_ob1_hdr_t *hdr, const uint8_t hdr_type)
505505
{
506506
if(!(hdr->hdr_common.hdr_flags & MCA_PML_OB1_HDR_FLAGS_NBO))
@@ -549,7 +549,7 @@ ob1_hdr_ntoh(mca_pml_ob1_hdr_t *hdr, const uint8_t hdr_type)
549549
#if OPAL_ENABLE_HETEROGENEOUS_SUPPORT
550550
#define ob1_hdr_hton(h, t, p) \
551551
ob1_hdr_hton_intr((mca_pml_ob1_hdr_t*)h, t, p)
552-
static inline __opal_attribute_always_inline__ void
552+
static inline void
553553
ob1_hdr_hton_intr(mca_pml_ob1_hdr_t *hdr, const uint8_t hdr_type,
554554
const ompi_proc_t *proc)
555555
{

0 commit comments

Comments
 (0)