mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
Disable ASM sparc
Original commit message from CVS: Disable ASM sparc
This commit is contained in:
parent
568ee450db
commit
f820e35169
1 changed files with 3 additions and 2 deletions
|
@ -206,7 +206,8 @@ gst_atomic_int_dec_and_test (GstAtomicInt *aint)
|
|||
}
|
||||
|
||||
/***** Sun SPARC *****/
|
||||
#elif defined(HAVE_CPU_SPARC) && defined(__GNUC__)
|
||||
/* disabled for now */
|
||||
#elif defined(HAVE_CPU_SPARC) && defined(__GNUC__) && 0
|
||||
|
||||
GST_INLINE_FUNC void gst_atomic_int_destroy (GstAtomicInt *aint) { }
|
||||
|
||||
|
@ -271,7 +272,7 @@ gst_atomic_int_dec_and_test (GstAtomicInt *aint)
|
|||
register int increment asm ("g2");
|
||||
|
||||
ptr = &aint->counter;
|
||||
increment = val;
|
||||
increment = 1;
|
||||
|
||||
__asm__ __volatile__(
|
||||
"mov %%o7, %%g4\n\t"
|
||||
|
|
Loading…
Reference in a new issue