diff options
| -rw-r--r-- | sys/sparc64/include/instr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/sparc64/include/instr.h b/sys/sparc64/include/instr.h index 51f030098b59..7ac514daa71e 100644 --- a/sys/sparc64/include/instr.h +++ b/sys/sparc64/include/instr.h @@ -148,7 +148,8 @@ /* Sign-extend a field of width W */ #define IF_SEXT(x, w) \ - (((x) & (1 << ((w) - 1))) != 0 ? (-1L - ((x) ^ ((1 << (w)) - 1))) : (x)) + (((x) & (1L << ((w) - 1))) != 0 ? \ + (-1L - ((x) ^ ((1L << (w)) - 1))) : (x)) #if 0 /* |
