diff options
author | Ken Raeburn <raeburn@cygnus> | 1993-01-04 21:48:44 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1993-01-04 21:48:44 +0000 |
commit | db81c5e7d5f9e90fa76f8783d25142976e842bdc (patch) | |
tree | 6f336dd9b5f49eb12cd0e4648e296eea44b454b3 /gas | |
parent | 06137fcb39050b754f71835da1f4ac24d3e08c41 (diff) | |
download | gdb-db81c5e7d5f9e90fa76f8783d25142976e842bdc.zip gdb-db81c5e7d5f9e90fa76f8783d25142976e842bdc.tar.gz gdb-db81c5e7d5f9e90fa76f8783d25142976e842bdc.tar.bz2 |
fix goof from last change
Diffstat (limited to 'gas')
-rw-r--r-- | gas/read.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -817,7 +817,11 @@ s_data () register int temp; temp = get_absolute_expression (); +#ifdef BFD_ASSEMBLER subseg_set (data_section, (subsegT) temp); +#else + subseg_change (data_section, (subsegT) temp); +#endif #ifdef VMS const_flag = 0; |