Skip to content
Snippets Groups Projects
Commit 02e6bfb8 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Merge branch '721-atomic_max_ll-mistype' into 'master'

Resolve "Atomic_max_ll mistype"

Closes #721

See merge request !1211
parents dc37cce5 c9ee9a39
No related branches found
No related tags found
1 merge request!1211Resolve "Atomic_max_ll mistype"
......@@ -179,7 +179,7 @@ __attribute__((always_inline)) INLINE static void atomic_max(
__attribute__((always_inline)) INLINE static void atomic_max_ll(
volatile long long *const address, const long long y) {
int test_val, old_val, new_val;
long long test_val, old_val, new_val;
old_val = *address;
do {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment