diff options
author | Tofu Linden <tofu.linden@lindenlab.com> | 2010-06-04 08:54:03 +0100 |
---|---|---|
committer | Tofu Linden <tofu.linden@lindenlab.com> | 2010-06-04 08:54:03 +0100 |
commit | dc2f50642bf6c785263d91ca53ec337f3898b990 (patch) | |
tree | 27743c0c61850bbea17439f16c51bca403e372c8 /indra/llcommon/llmemory.h | |
parent | 087b7499082c7f0ae867990a102bc8f90a83471d (diff) |
lots of _mm_malloc and _mm_free -> ll_aligned_malloc_16 and ll_aligned_free_16
more to come.
Diffstat (limited to 'indra/llcommon/llmemory.h')
-rw-r--r-- | indra/llcommon/llmemory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llmemory.h b/indra/llcommon/llmemory.h index 117268cfe7..93dd7a7fe3 100644 --- a/indra/llcommon/llmemory.h +++ b/indra/llcommon/llmemory.h @@ -34,7 +34,7 @@ #include <stdlib.h> -inline void* ll_aligned_malloc_16(size_t size) // returned hunk MUST be freed with ll_aligned_free(). +inline void* ll_aligned_malloc_16(size_t size) // returned hunk MUST be freed with ll_aligned_free_16(). { #if defined(LL_WINDOWS) return _mm_malloc(size, 16); |