mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
Comment out sparc asm as it's broken.
Original commit message from CVS: Comment out sparc asm as it's broken.
This commit is contained in:
parent
d13abb525a
commit
2c4d0a7e60
1 changed files with 2 additions and 2 deletions
|
@ -206,7 +206,7 @@ gst_atomic_int_dec_and_test (GstAtomicInt *aint)
|
|||
}
|
||||
|
||||
/***** Sun SPARC *****/
|
||||
#elif defined(HAVE_CPU_SPARC) && defined(__GNUC__)
|
||||
#elif defined(HAVE_CPU_SPARC) && defined(__GNUC__) && 0
|
||||
|
||||
GST_INLINE_FUNC void gst_atomic_int_destroy (GstAtomicInt *aint) { }
|
||||
|
||||
|
@ -271,7 +271,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