| Index: third_party/WebKit/Source/platform/transforms/TransformationMatrix.h
|
| diff --git a/third_party/WebKit/Source/platform/transforms/TransformationMatrix.h b/third_party/WebKit/Source/platform/transforms/TransformationMatrix.h
|
| index a3d40edf5f3cbbb54c41082c10aa1e4d2a902a0e..6e8e2b94009c7d002f5ab75516eb23b0df86f11b 100644
|
| --- a/third_party/WebKit/Source/platform/transforms/TransformationMatrix.h
|
| +++ b/third_party/WebKit/Source/platform/transforms/TransformationMatrix.h
|
| @@ -504,8 +504,9 @@ class PLATFORM_EXPORT TransformationMatrix {
|
| #if defined(TRANSFORMATION_MATRIX_USE_X86_64_SSE2)
|
| // m_matrix can cause this class to require higher than usual alignment.
|
| // Make sure the allocator handles this.
|
| - DCHECK((reinterpret_cast<uintptr_t>(this) &
|
| - (WTF_ALIGN_OF(TransformationMatrix) - 1)) == 0);
|
| + DCHECK_EQ((reinterpret_cast<uintptr_t>(this) &
|
| + (WTF_ALIGN_OF(TransformationMatrix) - 1)),
|
| + 0UL);
|
| #endif
|
| }
|
|
|
|
|