From 0e48102252127eec6f82e5bf85be6e1c13dbc453 Mon Sep 17 00:00:00 2001 From: David Schleef Date: Tue, 29 Jul 2003 22:34:43 +0000 Subject: [PATCH] Fix typo in last commit Original commit message from CVS: Fix typo in last commit --- gst/gstatomic_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/gstatomic_impl.h b/gst/gstatomic_impl.h index 3c33cb1ac9..81b64d5829 100644 --- a/gst/gstatomic_impl.h +++ b/gst/gstatomic_impl.h @@ -297,7 +297,7 @@ gst_atomic_int_dec_and_test (GstAtomicInt *aint) ptr = &aint->counter; -#if 0 __GNUC__ > 3 || (__GNUC__ >=3 && __GNUC_MINOR__ >= 2) +#if __GNUC__ > 3 || (__GNUC__ >=3 && __GNUC_MINOR__ >= 2) __asm__ __volatile__("1: ldstub [%[ptr] + 3], %[lock]\n" "\torcc %[lock], 0, %[ignore]\n" "\tbne 1b\n" /* go back until we have the lock */