diff options
author | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2010-11-23 01:52:11 +0100 |
---|---|---|
committer | Boroondas Gupte <hg@boroon.dasgupta.ch> | 2010-11-23 01:52:11 +0100 |
commit | 8edd7e94b1f294fe71e9c0d0b5bfa1b7ef7e11cc (patch) | |
tree | a06886cf72fab1c42d56f97ae7d81c5e945dc1a7 /indra/llmath/llsimdmath.h | |
parent | be1fd73390cab288c75ef99e704f3aa195a0c4ac (diff) | |
parent | 4f388eacf6395a380270815138e0684fefd7b6c3 (diff) |
merged CTS-323: Don't cast pointers to U32
Diffstat (limited to 'indra/llmath/llsimdmath.h')
-rw-r--r-- | indra/llmath/llsimdmath.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/llmath/llsimdmath.h b/indra/llmath/llsimdmath.h index d6debce2d7..b6ac5190a7 100644 --- a/indra/llmath/llsimdmath.h +++ b/indra/llmath/llsimdmath.h @@ -35,16 +35,18 @@ #error SSE2 not enabled. LLVector4a and related class will not compile. #endif +#include <stdint.h> + template <typename T> T* LL_NEXT_ALIGNED_ADDRESS(T* address) { return reinterpret_cast<T*>( - (reinterpret_cast<U32>(address) + 0xF) & ~0xF); + (reinterpret_cast<uintptr_t>(address) + 0xF) & ~0xF); } template <typename T> T* LL_NEXT_ALIGNED_ADDRESS_64(T* address) { return reinterpret_cast<T*>( - (reinterpret_cast<U32>(address) + 0x3F) & ~0x3F); + (reinterpret_cast<uintptr_t>(address) + 0x3F) & ~0x3F); } #if LL_LINUX || LL_DARWIN |