summaryrefslogtreecommitdiffstats
path: root/sys/amd64/include/atomic.h
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>1999-10-04 16:18:04 +0000
committerpeter <peter@FreeBSD.org>1999-10-04 16:18:04 +0000
commitfb976dbce4705a5834491e7067f7f367f10e6fcf (patch)
treeadfc1fa29647392acb811f29fa8ac0d49ffaa4eb /sys/amd64/include/atomic.h
parent4d689ed6f470dd1240dd8499d4ff66625c854328 (diff)
downloadFreeBSD-src-fb976dbce4705a5834491e7067f7f367f10e6fcf.zip
FreeBSD-src-fb976dbce4705a5834491e7067f7f367f10e6fcf.tar.gz
Typo: s/__GNUC_MINOR_/__GNUC_MINOR__/
(__GNUC_MINOR__ on egcs in -current is "91" and is going to be "95" soon)
Diffstat (limited to 'sys/amd64/include/atomic.h')
-rw-r--r--sys/amd64/include/atomic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/include/atomic.h b/sys/amd64/include/atomic.h
index 41b08c0..07b55fc 100644
--- a/sys/amd64/include/atomic.h
+++ b/sys/amd64/include/atomic.h
@@ -86,7 +86,7 @@ atomic_##NAME##_##TYPE(volatile u_##TYPE *p, u_##TYPE v)\
}
#endif /* KLD_MODULE */
-#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR_ > 9)
+#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ > 9)
ATOMIC_ASM(set, char, "orb %2,%0", v)
ATOMIC_ASM(clear, char, "andb %2,%0", ~v)
ATOMIC_ASM(add, char, "addb %2,%0", v)
OpenPOWER on IntegriCloud