Reversed a change in 1.27 that affects ABSOLUTE.

This commit is contained in:
Debbie Wiles 2002-05-26 21:08:39 +00:00
parent 667dd804e6
commit f1a3f94d45

6
nasm.c
View file

@ -59,10 +59,10 @@ int global_offset_changed; /* referenced in labels.c */
static loc_t location;
int in_abs_seg; /* Flag we are in ABSOLUTE seg */
static long abs_seg;
long abs_seg;
static struct RAA *offsets;
static long abs_offset;
long abs_offset;
static struct SAA *forwrefs; /* keep track of forward references */
static struct forwrefinfo *forwref;
@ -972,7 +972,7 @@ static void assemble_file (char *fname)
else report_error (ERR_PANIC, "invalid ABSOLUTE address "
"in pass two");
in_abs_seg = TRUE;
location.segment = abs_seg;
location.segment = NO_SEG;
break;
case 7: /* DEBUG */
p = value;