mirror of
https://github.com/postgres/postgres.git
synced 2026-02-22 17:31:00 -05:00
Add #include needed for _mm_mfence() intrinsic on ia64.
Hopefully this fixes the build failure on buildfarm member dugong.
This commit is contained in:
parent
7888c61238
commit
6052bceba5
1 changed files with 1 additions and 0 deletions
|
|
@ -53,6 +53,7 @@ extern slock_t dummy_spinlock;
|
|||
/*
|
||||
* icc defines __GNUC__, but doesn't support gcc's inline asm syntax
|
||||
*/
|
||||
#include <emmintrin.h>
|
||||
#define pg_memory_barrier() _mm_mfence()
|
||||
#define pg_compiler_barrier() __memory_barrier()
|
||||
#elif defined(__GNUC__)
|
||||
|
|
|
|||
Loading…
Reference in a new issue