2015-10-14
2015-10-14 18:49:19 by Martin Nilsson <nilsson@fastmail.com>
-
bd67392d207c0b103e73135135d2f2c67ff90e14
(16 lines)
(+8/-8)
[
Show
| Annotate
]
Branch: 8.1
Removed Intel IA64 compiler specific DO_NOT_WARN.
3338: Inside #if defined(PIKE_DEBUG)
for(d=0;d<p->inherits[e].inherit_level;d++) fprintf(stderr," ");
fprintf(stderr,"storage_offset: %ld\n",
- DO_NOT_WARN((long)p->inherits[e].storage_offset));
+ (long)p->inherits[e].storage_offset);
for(d=0;d<p->inherits[e].inherit_level;d++) fprintf(stderr," ");
fprintf(stderr,"parent: %p\n",p->inherits[e].parent);
4274:
}
if(Pike_compiler->new_program->alignment_needed<alignment)
- Pike_compiler->new_program->alignment_needed =
- DO_NOT_WARN((unsigned INT8)alignment);
+ Pike_compiler->new_program->alignment_needed = (unsigned INT8)alignment;
#ifdef PIKE_DEBUG
if(offset < Pike_compiler->new_program->storage_needed)
4283: Inside #if defined(PIKE_DEBUG)
if( (offset /* + OFFSETOF(object,storage) */ - modulo_orig ) % alignment )
Pike_fatal("add_storage failed horribly(2) %ld %ld %ld %ld!\n",
- DO_NOT_WARN((long)offset),
+ (long)offset,
(long)0 /* + OFFSETOF(object,storage) */,
- DO_NOT_WARN((long)modulo_orig),
- DO_NOT_WARN((long)alignment));
+ (long)modulo_orig),
+ (long)alignment);
#endif
7658:
insert_small_number(store_prog_string(current_file));
copy_shared_string(Pike_compiler->last_file, current_file);
}
- insert_small_number(DO_NOT_WARN((INT32)(PIKE_PC-Pike_compiler->last_pc)));
+ insert_small_number((INT32)(PIKE_PC-Pike_compiler->last_pc));
insert_small_number(current_line-Pike_compiler->last_line);
Pike_compiler->last_line = current_line;
- Pike_compiler->last_pc = DO_NOT_WARN((INT32)PIKE_PC);
+ Pike_compiler->last_pc = (INT32)PIKE_PC;
}
}