summaryrefslogtreecommitdiff
path: root/arch/x86/boot/bitops.h
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/boot/bitops.h')
-rw-r--r--arch/x86/boot/bitops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/boot/bitops.h b/arch/x86/boot/bitops.h
index 8518ae214c9b..79e15971529d 100644
--- a/arch/x86/boot/bitops.h
+++ b/arch/x86/boot/bitops.h
@@ -27,7 +27,7 @@ static inline bool variable_test_bit(int nr, const void *addr)
bool v;
const u32 *p = addr;
- asm("btl %2,%1" CC_SET(c) : CC_OUT(c) (v) : "m" (*p), "Ir" (nr));
+ asm("btl %2,%1" : "=@ccc" (v) : "m" (*p), "Ir" (nr));
return v;
}