From 75988ad3a8a09f0f679a6232007560863f74e6d7 Mon Sep 17 00:00:00 2001 From: "fbarchard@google.com" Date: Thu, 10 Nov 2011 20:28:35 +0000 Subject: [PATCH] remove align16 macro BUG=none TEST=none Review URL: http://webrtc-codereview.appspot.com/266012 git-svn-id: http://libyuv.googlecode.com/svn/trunk@70 16f28f9a-4ce2-e073-06de-1de4eb20be90 --- source/planar_functions.cc | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/planar_functions.cc b/source/planar_functions.cc index cd2e19f01..05f23e613 100644 --- a/source/planar_functions.cc +++ b/source/planar_functions.cc @@ -42,11 +42,6 @@ static void SplitUV_NEON(const uint8* src_uv, #elif (defined(WIN32) || defined(__x86_64__) || defined(__i386__)) \ && !defined(COVERAGE_ENABLED) && !defined(TARGET_IPHONE_SIMULATOR) -#if defined(_MSC_VER) -#define TALIGN16(t, var) static __declspec(align(16)) t _ ## var -#else -#define TALIGN16(t, var) t var __attribute__((aligned(16))) -#endif #if defined(WIN32) && !defined(COVERAGE_ENABLED) #define HAS_SPLITUV_SSE2