Skip to content

Commit 9639fe9

Browse files
committed
Update flang/include/flang/ISO_Fortran_binding.h
1 parent b3dff1b commit 9639fe9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flang/include/flang/ISO_Fortran_binding.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ typedef struct CFI_cdesc_t {
172172
return ((int)extra >> _CFI_ADDENDUM_BITS);
173173
}
174174
RT_API_ATTRS inline void SetAllocIdx(int pos) {
175-
extra = extra | (pos << _CFI_ADDENDUM_BITS);
175+
extra |= (pos << _CFI_ADDENDUM_BITS);
176176
}
177177
#endif
178178
} CFI_cdesc_t;

0 commit comments

Comments
 (0)