Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix function name for parsec_atomic_fetch_add_int64 #705

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion parsec/include/parsec/sys/atomic-x86_64.h
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ int32_t parsec_atomic_fetch_add_int32(volatile int32_t* v, int32_t i)

#define PARSEC_ATOMIC_HAS_ATOMIC_FETCH_ADD_INT64
ATOMIC_STATIC_INLINE
int64_t parsec_atomic_fetch_add_int32(volatile int64_t* v, int64_t i)
int64_t parsec_atomic_fetch_add_int64(volatile int64_t* v, int64_t i)
{
int64_t ret = i;
__asm__ __volatile__(
Expand Down