Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9f6026b8 authored by Andi Kleen's avatar Andi Kleen Committed by Andi Kleen
Browse files

[PATCH] x86-64: Fix wrong gcc check in bitops.h



gcc 5.0 will likely not have the constraint problem
Signed-off-by: default avatarAndi Kleen <ak@suse.de>
parent 2fb12a9b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@

#include <asm/alternative.h>

#if __GNUC__ < 4 || __GNUC_MINOR__ < 1
#if __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 1)
/* Technically wrong, but this avoids compilation errors on some gcc
   versions. */
#define ADDR "=m" (*(volatile long *) addr)