Commit 76533d03 authored by Rich Prohaska's avatar Rich Prohaska Committed by Yoni Fogel

fix the linux 32 bit build closes[t:2306]

git-svn-id: file:///svn/toku/tokudb@17014 c7de825b-a66e-492c-adef-691d508d4ae1
parent b0ee051f
......@@ -74,7 +74,7 @@ static inline int32_t toku_sync_fetch_and_decrement_int32(volatile int32_t *a) {
#if __GNUC__ && __i386__
// workaround for a gcc 4.1.2 bug on 32 bit platforms.
static uint64_t toku_sync_fetch_and_add_uint64(volatile uint64_t *a, uint64_t b) __attribute__((noinline));
uint64_t toku_sync_fetch_and_add_uint64(volatile uint64_t *a, uint64_t b) __attribute__((noinline));
#else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment