Disable MIPS, 'cuz it's broken.

Original commit message from CVS:
Disable MIPS, 'cuz it's broken.
This commit is contained in:
David Schleef 2003-05-01 01:11:52 +00:00
parent dc8008a9b9
commit 38b667a0aa

View file

@ -290,7 +290,9 @@ gst_atomic_int_dec_and_test (GstAtomicInt *aint)
}
/***** MIPS *****/
#elif defined(HAVE_CPU_MIPS) && defined(__GNUC__)
/* This is disabled because the asm code is broken on most MIPS
* processors and doesn't generally compile. */
#elif defined(HAVE_CPU_MIPS) && defined(__GNUC__) && 0
GST_INLINE_FUNC void gst_atomic_int_init (GstAtomicInt *aint, gint val) { aint->counter = val; }
GST_INLINE_FUNC void gst_atomic_int_destroy (GstAtomicInt *aint) { }