Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/libexec/ld.elf_so/arch/powerpc Fix parenthesis on __ha macro



details:   https://anonhg.NetBSD.org/src/rev/a4664517447e
branches:  trunk
changeset: 797807:a4664517447e
user:      matt <matt%NetBSD.org@localhost>
date:      Mon Jul 28 17:28:13 2014 +0000

description:
Fix parenthesis on __ha macro

diffstat:

 libexec/ld.elf_so/arch/powerpc/ppc_reloc.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 1a62b49a38aa -r a4664517447e libexec/ld.elf_so/arch/powerpc/ppc_reloc.c
--- a/libexec/ld.elf_so/arch/powerpc/ppc_reloc.c        Mon Jul 28 14:24:48 2014 +0000
+++ b/libexec/ld.elf_so/arch/powerpc/ppc_reloc.c        Mon Jul 28 17:28:13 2014 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: ppc_reloc.c,v 1.51 2014/03/06 19:19:40 matt Exp $      */
+/*     $NetBSD: ppc_reloc.c,v 1.52 2014/07/28 17:28:13 matt Exp $      */
 
 /*-
  * Copyright (C) 1998  Tsubai Masanari
@@ -30,7 +30,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__RCSID("$NetBSD: ppc_reloc.c,v 1.51 2014/03/06 19:19:40 matt Exp $");
+__RCSID("$NetBSD: ppc_reloc.c,v 1.52 2014/07/28 17:28:13 matt Exp $");
 #endif /* not lint */
 
 #include <stdarg.h>
@@ -51,7 +51,7 @@
 #define __ha48         __u64(0xffffffff8000)
 #define __ha32         __u64(0xffff8000)
 #define __ha16         __u32(0x8000)
-#define __ha(x,n) ((((x) >> (n)) + ((x) & __ha##n) == __ha##n) & 0xffff)
+#define __ha(x,n) ((((x) >> (n)) + (((x) & __ha##n) == __ha##n)) & 0xffff)
 #define __hi(x,n) (((x) >> (n)) & 0xffff)
 #ifdef __LP64
 #define highesta(x)    __ha(__u64(x), 48)



Home | Main Index | Thread Index | Old Index