diff options
Diffstat (limited to 'includes/Stg.h')
-rw-r--r-- | includes/Stg.h | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/includes/Stg.h b/includes/Stg.h index 8b3a3fc251..4c26e3ef80 100644 --- a/includes/Stg.h +++ b/includes/Stg.h @@ -477,24 +477,6 @@ INLINE_HEADER StgInt64 PK_Int64(W_ p_src[]) #endif /* ----------------------------------------------------------------------------- - Write-combining store - -------------------------------------------------------------------------- */ - -INLINE_HEADER void -wcStore (StgPtr p, StgWord w) -{ -#ifdef x86_64_HOST_ARCH - __asm__( - "movnti\t%1, %0" - : "=m" (*p) - : "r" (w) - ); -#else - *p = w; -#endif -} - -/* ----------------------------------------------------------------------------- Integer multiply with overflow -------------------------------------------------------------------------- */ |