Remove two optimizations that RSX Macro-11 apparently does not perform.

This is useful for comparing created files with the original assembler.
They can be put back later.
This commit is contained in:
Olaf Seibert 2015-05-19 01:00:05 +02:00
parent 12fdea5b21
commit 6a6a9ee1eb

View File

@ -684,8 +684,10 @@ int text_psect_offset_word(
{
unsigned radtbl[2];
#if OPTIMIZE_ZERO_OFFSET
if (word == 0)
return text_psect_word(tr, addr, size, word, name);
#endif
if (!text_fit(tr, *addr, size, 8))
return 0;
@ -745,8 +747,10 @@ int text_psect_displaced_offset_word(
{
unsigned radtbl[2];
#if OPTIMIZE_ZERO_OFFSET
if (word == 0)
return text_psect_displaced_word(tr, addr, size, word, name);
#endif
if (!text_fit(tr, *addr, size, 8))
return 0;