Fix missing BITS_PER_LONG -> CAA_BITS_PER_LONG rename
[urcu.git] / urcu / uatomic_arch_s390.h
index 75025b1e7699e9498ee2653737ce1511509f8d87..2a4fa03e66cedb8d32488ae9e659ef886e76d88f 100644 (file)
@@ -84,7 +84,7 @@ unsigned long _uatomic_exchange(volatile void *addr, unsigned long val, int len)
                        : "memory", "cc");
                return old_val;
        }
-#if (BITS_PER_LONG == 64)
+#if (CAA_BITS_PER_LONG == 64)
        case 8:
        {
                unsigned long old_val;
@@ -127,7 +127,7 @@ unsigned long _uatomic_cmpxchg(void *addr, unsigned long old,
                        : "memory", "cc");
                return old_val;
        }
-#if (BITS_PER_LONG == 64)
+#if (CAA_BITS_PER_LONG == 64)
        case 8:
        {
                __asm__ __volatile__(
This page took 0.022297 seconds and 4 git commands to generate.