Cleanup: tests: Branch condition evaluates to a garbage value
[urcu.git] / rculfhash.c
index 57f1a04d46dd3d446ca88fa74267660dd7a26fe2..454001d1f7cab6fe51340d7c71db398aa17bce0b 100644 (file)
@@ -426,7 +426,7 @@ unsigned int fls_u32(uint32_t x)
 {
        int r;
 
-       asm("bsrl %1,%0\n\t"
+       __asm__ ("bsrl %1,%0\n\t"
            "jnz 1f\n\t"
            "movl $-1,%0\n\t"
            "1:\n\t"
@@ -442,7 +442,7 @@ unsigned int fls_u64(uint64_t x)
 {
        long r;
 
-       asm("bsrq %1,%0\n\t"
+       __asm__ ("bsrq %1,%0\n\t"
            "jnz 1f\n\t"
            "movq $-1,%0\n\t"
            "1:\n\t"
This page took 0.022814 seconds and 4 git commands to generate.