summaryrefslogtreecommitdiffstats
path: root/libmpeg2/cpu_state.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-01 12:45:59 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-01 12:45:59 +0000
commitc0d5690ad080f2871fde5047a84c731236aea246 (patch)
tree42376c0c18b9ee10f44455d4f9eeccd5cac79394 /libmpeg2/cpu_state.c
parent7e9a5ca50a6ff68d67d1ec29941869e46d526c94 (diff)
downloadmpv-c0d5690ad080f2871fde5047a84c731236aea246.tar.bz2
mpv-c0d5690ad080f2871fde5047a84c731236aea246.tar.xz
Fix compilation on PPC without AltiVec.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26627 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpeg2/cpu_state.c')
-rw-r--r--libmpeg2/cpu_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpeg2/cpu_state.c b/libmpeg2/cpu_state.c
index 1ef77b7cea..52cb08b80c 100644
--- a/libmpeg2/cpu_state.c
+++ b/libmpeg2/cpu_state.c
@@ -47,7 +47,7 @@ static void state_restore_mmx (cpu_state_t * state)
}
#endif
-#if defined(ARCH_PPC) && defined(HAVE_ALTIVEC)
+#ifdef ARCH_PPC
#if defined(__APPLE_CC__) /* apple */
#define LI(a,b) "li r" #a "," #b "\n\t"
#define STVX0(a,b,c) "stvx v" #a ",0,r" #c "\n\t"