2015-10-14
2015-10-14 19:41:28 by Martin Nilsson <nilsson@fastmail.com>
-
cc7cf4efdaa22f384515a22c14b7f332a0692a61
(9 lines)
(+5/-4)
[
Show
| Annotate
]
Branch: 8.1
Removed Intel IA64 compiler specific DO_NOT_WARN.
765:
offset = scan - val;
else
offset = val - scan;
- *(scan + 1) = DO_NOT_WARN((offset >> 8) & 0377);
- *(scan + 2) = DO_NOT_WARN(offset & 0377);
+ *(scan + 1) = (offset >> 8) & 0377;
+ *(scan + 2) = offset & 0377;
}
/*
1148: Inside #if defined(PIKE_DEBUG)
while (op != END) { /* While that wasn't END last time... */
op = OP(s);
printf("%2ld%s", /* Where, what. */
- DO_NOT_WARN((long)(s - r->program)),
+ (long)(s - r->program),
regprop(s));
next = regnext(s);
if (next == NULL) /* next ptr. */
printf("(0)");
else
printf("(%ld)",
- DO_NOT_WARN((long)( (s - r->program) + (next - s))));
+ (long)( (s - r->program) + (next - s)));
s += 3;
if (op == ANYOF || op == ANYBUT || op == EXACTLY) {
/* Literal string, where present. */